f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
23 lines
692 B
Nix
23 lines
692 B
Nix
{ callPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
callPackage ../generic.nix rec {
|
|
pname = "experienced-pixel-dungeon";
|
|
version = "2.18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TrashboxBobylev";
|
|
repo = "Experienced-Pixel-Dungeon-Redone";
|
|
rev = "ExpPD-${version}";
|
|
hash = "sha256-jOKHBd9LaDn3oqLdQWqAcJnicktlbkDGw00nT8JveoI=";
|
|
};
|
|
|
|
desktopName = "Experienced Pixel Dungeon";
|
|
|
|
meta = {
|
|
homepage = "https://github.com/TrashboxBobylev/Experienced-Pixel-Dungeon-Redone";
|
|
downloadPage = "https://github.com/TrashboxBobylev/Experienced-Pixel-Dungeon-Redone/releases";
|
|
description = "A fork of the Shattered Pixel Dungeon roguelike without limits on experience and items";
|
|
};
|
|
}
|