2023-09-12 14:50:18 +02:00
|
|
|
{
|
|
|
|
callPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
}:
|
|
|
|
|
2023-12-14 18:55:39 +07:00
|
|
|
callPackage ../generic.nix rec {
|
2023-09-12 14:50:18 +02:00
|
|
|
pname = "rkpd2";
|
2025-03-11 07:58:53 +00:00
|
|
|
version = "2.0.8";
|
2023-09-12 14:50:18 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Zrp200";
|
|
|
|
repo = "rkpd2";
|
2025-04-08 02:51:45 -04:00
|
|
|
rev = "v${version}";
|
2025-03-11 07:58:53 +00:00
|
|
|
hash = "sha256-jM4CtC3AVXXBjHAfeDp4dFomDpRl76DhD+q9vIAeEhA=";
|
2023-09-12 14:50:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
desktopName = "Rat King Pixel Dungeon 2";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/Zrp200/rkpd2";
|
|
|
|
downloadPage = "https://github.com/Zrp200/rkpd2/releases";
|
|
|
|
description = "Fork of popular roguelike game Shattered Pixel Dungeon that drastically buffs heroes and thus makes the game significantly easier";
|
|
|
|
};
|
|
|
|
}
|