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

24 lines
626 B
Nix

{
callPackage,
fetchFromGitHub,
}:
callPackage ../generic.nix rec {
pname = "rat-king-adventure";
version = "2.0.2";
src = fetchFromGitHub {
owner = "TrashboxBobylev";
repo = "Rat-King-Adventure";
rev = version;
hash = "sha256-mh54m2YwGOmE03fxndk3wNX/xi6UyIdXWEguiC3mDeA=";
};
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";
};
}