2023-09-12 14:50:53 +02:00
|
|
|
{
|
|
|
|
callPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
}:
|
|
|
|
|
2023-12-14 18:55:39 +07:00
|
|
|
callPackage ../generic.nix rec {
|
2023-09-12 14:50:53 +02:00
|
|
|
pname = "rat-king-adventure";
|
2025-07-24 04:13:40 +00:00
|
|
|
version = "2.2.3";
|
2023-09-12 14:50:53 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "TrashboxBobylev";
|
|
|
|
repo = "Rat-King-Adventure";
|
2025-04-08 02:51:45 -04:00
|
|
|
rev = version;
|
2025-07-24 04:13:40 +00:00
|
|
|
hash = "sha256-6KmJRcYUjEdFym8nkCtg841CyKKYV1gACMJv/zOQ2Oc=";
|
2023-09-12 14:50:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
desktopName = "Rat King Adventure";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/TrashboxBobylev/Rat-King-Adventure";
|
|
|
|
downloadPage = "https://github.com/TrashboxBobylev/Rat-King-Adventure/releases";
|
2025-08-11 00:32:59 -07:00
|
|
|
description = "Expansive fork of RKPD2, itself a fork of the Shattered Pixel Dungeon roguelike";
|
2023-09-12 14:50:53 +02:00
|
|
|
};
|
|
|
|
}
|