about summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd
diff options
context:
space:
mode:
authorMaciej Krüger <mkg20001@gmail.com>2020-04-03 00:53:34 +0200
committerMaciej Krüger <mkg20001@gmail.com>2020-07-30 20:43:37 +0200
commit6b806a20977232175bdaf0753e5dd432428bf9db (patch)
treee8e503ae6ec574f4aef47bd4ba620be7bcf727ce /pkgs/tools/cd-dvd
parent23b5b1fb84906179a220db6fb28c4b7d716f9a63 (diff)
isolyzer: init at 1.3.0
Co-authored-by: worldofpeace <worldofpeace@protonmail.ch>
Diffstat (limited to 'pkgs/tools/cd-dvd')
-rw-r--r--pkgs/tools/cd-dvd/isolyzer/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/cd-dvd/isolyzer/default.nix b/pkgs/tools/cd-dvd/isolyzer/default.nix
new file mode 100644
index 0000000000000..1fd704d90f195
--- /dev/null
+++ b/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 ];
+  };
+}