2023-11-16 04:20:00 +00:00
|
|
|
{ callPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
callPackage ../generic.nix rec {
|
2023-11-16 04:20:00 +00:00
|
|
|
pname = "rkpd2";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "2.0.6";
|
2023-11-16 04:20:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Zrp200";
|
|
|
|
repo = "rkpd2";
|
|
|
|
rev = "v${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-jwH0nEsv3agUCZt5Mhuv1JSeELOKfrsj3cnmAJsV9sM=";
|
2023-11-16 04:20:00 +00: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";
|
|
|
|
};
|
|
|
|
}
|