aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/cd-dvd/isolyzer/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/cd-dvd/isolyzer/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/cd-dvd/isolyzer/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/cd-dvd/isolyzer/default.nix b/nixpkgs/pkgs/tools/cd-dvd/isolyzer/default.nix
new file mode 100644
index 00000000000..1fd704d90f1
--- /dev/null
+++ b/nixpkgs/pkgs/tools/cd-dvd/isolyzer/default.nix
@@ -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 ];
+ };
+}