toxic: 0.15.1 -> 0.16.0
[NixPkgs.git] / pkgs / by-name / ig / igir / package.nix
blob38bf62bf443c4e3e4fa523685fac879f4263b723
2   lib,
3   buildNpmPackage,
4   fetchFromGitHub,
6   # for patching bundled 7z binary from the 7zip-bin node module
7   # at lib/node_modules/igir/node_modules/7zip-bin/linux/x64/7za
8   autoPatchelfHook,
9   stdenv,
12 buildNpmPackage rec {
13   pname = "igir";
14   version = "2.11.0";
16   src = fetchFromGitHub {
17     owner = "emmercm";
18     repo = "igir";
19     rev = "v${version}";
20     hash = "sha256-NG0ZP8LOm7fZVecErTuLOfbp1yvXwHnwPkWTBzUJXWE=";
21   };
23   npmDepsHash = "sha256-ADIEzr6PkGaJz27GKSVyTsrbz5zbud7BUb+OXPtP1Vo=";
25   # I have no clue why I have to do this
26   postPatch = ''
27     patchShebangs scripts/update-readme-help.sh
28   '';
30   nativeBuildInputs = [ autoPatchelfHook ];
32   buildInputs = [ (lib.getLib stdenv.cc.cc) ];
34   # from lib/node_modules/igir/node_modules/@node-rs/crc32-linux-x64-musl/crc32.linux-x64-musl.node
35   # Irrelevant to our use
36   autoPatchelfIgnoreMissingDeps = [ "libc.musl-x86_64.so.1" ];
38   meta = with lib; {
39     description = "Video game ROM collection manager to help filter, sort, patch, archive, and report on collections on any OS";
40     mainProgram = "igir";
41     homepage = "https://igir.io";
42     changelog = "https://github.com/emmercm/igir/releases/tag/${src.rev}";
43     license = licenses.gpl3Plus;
44     maintainers = with maintainers; [ ];
45     platforms = platforms.linux;
46   };