Merge pull request #252765 from TheBrainScrambler/igir

igir: init at 2.0.6
This commit is contained in:
Thomas Gerbet 2023-12-04 22:33:44 +01:00 committed by GitHub
commit 69319e0269
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, buildNpmPackage
, fetchFromGitHub
}:
buildNpmPackage rec {
pname = "igir";
version = "2.0.6";
src = fetchFromGitHub {
owner = "emmercm";
repo = "igir";
rev = "v${version}";
hash = "sha256-HIhk60I5VUMHBUp5EQGpE7RZ0KiYwVMl1jEX9zb5ttA=";
};
npmDepsHash = "sha256-P+H6q+jwfJFMb5qtOS3OCVUu9MtZ+Knaog0qyP3FpFo=";
# I have no clue why I have to do this
postPatch = ''
patchShebangs scripts/update-readme-help.sh
'';
meta = with lib; {
description = "A video game ROM collection manager to help filter, sort, patch, archive, and report on collections on any OS";
homepage = "https://igir.io";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ TheBrainScrambler ];
platforms = platforms.linux;
};
}

View File

@ -1902,6 +1902,8 @@ with pkgs;
hyperpotamus = callPackage ../tools/misc/hyperpotamus { };
igir = callPackage ../tools/games/igir { };
immich-cli = callPackage ../tools/misc/immich-cli { };
inherit (callPackage ../tools/networking/ivpn/default.nix {}) ivpn ivpn-service;