depot/third_party/nixpkgs/pkgs/games/shattered-pixel-dungeon/rkpd2/default.nix

24 lines
602 B
Nix
Raw Normal View History

{ callPackage
, fetchFromGitHub
}:
callPackage ../generic.nix rec {
pname = "rkpd2";
version = "2.0.6";
src = fetchFromGitHub {
owner = "Zrp200";
repo = "rkpd2";
rev = "v${version}";
hash = "sha256-jwH0nEsv3agUCZt5Mhuv1JSeELOKfrsj3cnmAJsV9sM=";
};
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";
};
}