nixpkgs/pkgs/games/shattered-pixel-dungeon/rat-king-adventure.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
690 B
Nix
Raw Normal View History

2023-09-12 12:50:53 +00:00
{ callPackage
, fetchFromGitHub
}:
callPackage ./generic.nix rec {
pname = "rat-king-adventure";
2023-12-23 03:57:25 +00:00
version = "1.5.3";
2023-09-12 12:50:53 +00:00
src = fetchFromGitHub {
owner = "TrashboxBobylev";
repo = "Rat-King-Adventure";
rev = version;
2023-12-23 03:57:25 +00:00
hash = "sha256-Q/smIObu7khcRnwdT8m7+WstpPE1tbDFJcZ4OGYJ338=";
2023-09-12 12:50:53 +00:00
};
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";
};
}