about summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd/isolyzer/default.nix
blob: 6f231430fa86fe7c5e41fb94ef11acfde6b03a86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, python3
, fetchFromGitHub
}:

python3.pkgs.buildPythonApplication rec {
  pname = "isolyzer";
  version = "1.4.0";

  src = fetchFromGitHub {
    owner = "KBNLresearch";
    repo = pname;
    rev = "refs/tags/${version}";
    sha256 = "sha256-NqkjnEwpaoyguG5GLscKS9UQGtF9N4jUL5JhrMtKCFE=";
  };

  propagatedBuildInputs = with python3.pkgs; [ setuptools six ];

  meta = with 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 ];
    mainProgram = "isolyzer";
  };
}