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

25 lines
606 B
Nix
Raw Permalink Normal View History

2023-09-12 14:50:18 +02:00
{
callPackage,
fetchFromGitHub,
}:
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";
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";
};
}