mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
24 lines
622 B
Nix
24 lines
622 B
Nix
{ callPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
callPackage ../generic.nix rec {
|
|
pname = "rat-king-adventure";
|
|
version = "2.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TrashboxBobylev";
|
|
repo = "Rat-King-Adventure";
|
|
rev = version;
|
|
hash = "sha256-mh54m2YwGOmE03fxndk3wNX/xi6UyIdXWEguiC3mDeA=";
|
|
};
|
|
|
|
desktopName = "Rat King Adventure";
|
|
|
|
meta = {
|
|
homepage = "https://github.com/TrashboxBobylev/Rat-King-Adventure";
|
|
downloadPage = "https://github.com/TrashboxBobylev/Rat-King-Adventure/releases";
|
|
description = "An expansive fork of RKPD2, itself a fork of the Shattered Pixel Dungeon roguelike";
|
|
};
|
|
}
|