iac: init at 0.1.7

This commit is contained in:
Hugh O'Brien 2023-06-17 11:20:56 -04:00 committed by Emery Hemingway
parent 6d4ad65d69
commit 28c5effe2f
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ 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 = "The Iso9660 Analyzer Tool is a tool for detecting the structure of many types of CD/DVD images. It can convert from IMG to ISO format.";
homepage = "https://www.berlios.de/software/iso9660-analyzer-tool/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ hughobrien ];
platforms = platforms.linux;
};
})

View file

@ -6299,6 +6299,8 @@ with pkgs;
cider = callPackage ../applications/audio/cider { };
iat = callPackage ../tools/cd-dvd/iat { };
isolyzer = callPackage ../tools/cd-dvd/isolyzer { };
isomd5sum = callPackage ../tools/cd-dvd/isomd5sum { };