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

25 lines
623 B
Nix
Raw Permalink Normal View History

2023-09-12 14:50:53 +02:00
{
callPackage,
fetchFromGitHub,
}:
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";
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";
description = "Expansive fork of RKPD2, itself a fork of the Shattered Pixel Dungeon roguelike";
2023-09-12 14:50:53 +02:00
};
}