summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/cd-dvd
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-07-30 14:57:05 -0400
committerGitHub <noreply@github.com>2020-07-30 14:57:05 -0400
commit82a441d3cfcccce66500e40358a241ed9ccb7c47 (patch)
tree00158dae7de903d47afb2372e5af3f2465f627ad /pkgs/tools/cd-dvd
parentb21c16fc5e53fa7f7298ea734b4d8baffd1d1720 (diff)
parent6b806a20977232175bdaf0753e5dd432428bf9db (diff)
Merge pull request #84141 from mkg20001/pkg/isolyzer
isolyzer: init at 1.3.0
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 000000000000..1fd704d90f19
--- /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 ];
+ };
+}