1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/tools/cd-dvd/iat/default.nix

24 lines
604 B
Nix

{ lib
, stdenv
, fetchurl
}:
stdenv.mkDerivation (finalAttr: {
pname = "iat";
version = "0.1.7";
src = fetchurl {
url = "mirror://sourceforge/iat.berlios/iat-${finalAttr.version}.tar.gz";
hash = "sha256-sl1X/eKKArLYfNSf0UeLA5rb2DY1GHmmVP6hTCd2SyE=";
};
meta = with lib; {
description = "A tool for detecting the structure of many types of CD/DVD images";
homepage = "https://www.berlios.de/software/iso9660-analyzer-tool/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ hughobrien ];
platforms = platforms.linux;
mainProgram = "iat";
};
})