3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/games/rpg-cli/default.nix

26 lines
652 B
Nix
Raw Normal View History

2021-05-26 21:04:27 +01:00
{ rustPlatform, fetchFromGitHub, lib }:
rustPlatform.buildRustPackage rec {
pname = "rpg-cli";
2021-06-06 06:41:56 +01:00
version = "0.4.0";
2021-05-26 21:04:27 +01:00
src = fetchFromGitHub {
owner = "facundoolano";
repo = pname;
2021-05-30 17:59:16 +01:00
rev = version;
2021-06-06 06:41:56 +01:00
sha256 = "0rbj27zd7ydkvnyszd56hazj64aqqrwn34fsy4jymk50lvicwxjg";
2021-05-26 21:04:27 +01:00
};
2021-06-06 06:41:56 +01:00
cargoSha256 = "sha256-VftJgRqrFwTElp2/e+zQYZOLZPjbc9C8SZ4DlBEtRvQ=";
2021-05-26 21:04:27 +01:00
# tests assume the authors macbook, and thus fail
doCheck = false;
meta = with lib; {
description = "Your filesystem as a dungeon";
homepage = "https://github.com/facundoolano/rpg-cli";
license = licenses.mit;
maintainers = with maintainers; [ legendofmiracles ];
};
}