about summary refs log tree commit diff
path: root/pkgs/tools/games
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-01-27 10:40:50 -0500
committerGitHub <noreply@github.com>2024-01-27 10:40:50 -0500
commite0be3bfaf0300a22e60de8b4ecab9442fe610704 (patch)
tree369f9f47bf2ad6befb733823d3a1efd6b74b0025 /pkgs/tools/games
parenta8602015bbd4f3da9ca8b62d591146df7782cfb9 (diff)
parentb19c0e84e472a74a974a636105857e81237bac7a (diff)
downloadnixlib-e0be3bfaf0300a22e60de8b4ecab9442fe610704.tar
nixlib-e0be3bfaf0300a22e60de8b4ecab9442fe610704.tar.gz
nixlib-e0be3bfaf0300a22e60de8b4ecab9442fe610704.tar.bz2
nixlib-e0be3bfaf0300a22e60de8b4ecab9442fe610704.tar.lz
nixlib-e0be3bfaf0300a22e60de8b4ecab9442fe610704.tar.xz
nixlib-e0be3bfaf0300a22e60de8b4ecab9442fe610704.tar.zst
nixlib-e0be3bfaf0300a22e60de8b4ecab9442fe610704.zip
Merge pull request #279842 from TheBrainScrambler/igir
 igir: use autoPatchelfHook
Diffstat (limited to 'pkgs/tools/games')
-rw-r--r--pkgs/tools/games/igir/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/tools/games/igir/default.nix b/pkgs/tools/games/igir/default.nix
deleted file mode 100644
index 4f4cf048a659..000000000000
--- a/pkgs/tools/games/igir/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ lib
-, buildNpmPackage
-, fetchFromGitHub
-}:
-
-buildNpmPackage rec {
-  pname = "igir";
-  version = "2.2.1";
-
-  src = fetchFromGitHub {
-    owner = "emmercm";
-    repo = "igir";
-    rev = "v${version}";
-    hash = "sha256-MlLnnwlqFkzSZi+6OGS/ZPYRPjV7CY/piFvilwhhR9A=";
-  };
-
-  npmDepsHash = "sha256-yVo2ZKu2lEOYG12Gk5GQXamprkP5jEyKlSTZdPjNWQM=";
-
-  # 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;
-  };
-}