25 lines
623 B
Nix

{
callPackage,
fetchFromGitHub,
}:
callPackage ../generic.nix rec {
pname = "rat-king-adventure";
version = "2.2.3";
src = fetchFromGitHub {
owner = "TrashboxBobylev";
repo = "Rat-King-Adventure";
rev = version;
hash = "sha256-6KmJRcYUjEdFym8nkCtg841CyKKYV1gACMJv/zOQ2Oc=";
};
desktopName = "Rat King Adventure";
meta = {
homepage = "https://github.com/TrashboxBobylev/Rat-King-Adventure";
downloadPage = "https://github.com/TrashboxBobylev/Rat-King-Adventure/releases";
description = "Expansive fork of RKPD2, itself a fork of the Shattered Pixel Dungeon roguelike";
};
}