Merge pull request #84141 from mkg20001/pkg/isolyzer

isolyzer: init at 1.3.0
gstqt5
worldofpeace 2020-07-30 14:57:05 -04:00 committed by GitHub
commit 82a441d3cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "isolyzer";
version = "1.3.0";
src = fetchFromGitHub {
owner = "KBNLresearch";
repo = pname;
rev = version;
sha256 = "1fysm05cz0z54apn1p889xhbgjnfwax6fngi05yij5qp2zxqghf9";
};
propagatedBuildInputs = with python3.pkgs; [ setuptools six ];
meta = with stdenv.lib; {
homepage = "https://github.com/KBNLresearch/isolyzer";
description = "Verify size of ISO 9660 image against Volume Descriptor fields";
license = licenses.asl20;
maintainers = with maintainers; [ mkg20001 ];
};
}

View File

@ -2525,6 +2525,8 @@ in
cemu = qt5.callPackage ../applications/science/math/cemu { };
isolyzer = callPackage ../tools/cd-dvd/isolyzer { };
isomd5sum = callPackage ../tools/cd-dvd/isomd5sum { };
mdf2iso = callPackage ../tools/cd-dvd/mdf2iso { };