about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/shattered-pixel-dungeon/rat-king-adventure.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/shattered-pixel-dungeon/rat-king-adventure.nix')
-rw-r--r--nixpkgs/pkgs/games/shattered-pixel-dungeon/rat-king-adventure.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/games/shattered-pixel-dungeon/rat-king-adventure.nix b/nixpkgs/pkgs/games/shattered-pixel-dungeon/rat-king-adventure.nix
new file mode 100644
index 000000000000..34a24a758fde
--- /dev/null
+++ b/nixpkgs/pkgs/games/shattered-pixel-dungeon/rat-king-adventure.nix
@@ -0,0 +1,25 @@
+{ callPackage
+, fetchFromGitHub
+}:
+
+callPackage ./generic.nix rec {
+  pname = "rat-king-adventure";
+  version = "1.5.2a";
+
+  src = fetchFromGitHub {
+    owner = "TrashboxBobylev";
+    repo = "Rat-King-Adventure";
+    rev = version;
+    hash = "sha256-UgUm7GIn1frS66YYrx+ax+oqMKnQnDlqpn9e1kWwDzo=";
+  };
+
+  depsHash = "sha256-yE6zuLnFLtNq76AhtyE+giGLF2vcCqF7sfIvcY8W6Lg=";
+
+  desktopName = "Rat King Adventure";
+
+  meta = {
+    homepage = "https://github.com/TrashboxBobylev/Rat-King-Adventure";
+    downloadPage = "https://github.com/TrashboxBobylev/Rat-King-Adventure/releases";
+    description = "An expansive fork of RKPD2, itself a fork of the Shattered Pixel Dungeon roguelike";
+  };
+}