nixpkgs/pkgs/games/rpg-cli/default.nix

26 lines
651 B
Nix
Raw Permalink Normal View History

2021-05-26 20:04:27 +00:00
{ rustPlatform, fetchFromGitHub, lib }:
rustPlatform.buildRustPackage rec {
pname = "rpg-cli";
2021-08-07 15:51:14 +00:00
version = "0.6.0";
2021-05-26 20:04:27 +00:00
src = fetchFromGitHub {
owner = "facundoolano";
repo = pname;
2021-05-30 16:59:16 +00:00
rev = version;
2021-08-07 15:51:14 +00:00
sha256 = "sha256-R0Yaxe7Z1gPH0pvfytl5lOJKDZi4hN/upY/baMLc3Aw=";
2021-05-26 20:04:27 +00:00
};
2021-08-07 15:51:14 +00:00
cargoSha256 = "sha256-pvhZlj1uy5DZV+RBnqkUlVQPdQqGhh0YLE9aGFS3s1g=";
2021-05-26 20:04:27 +00: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 ];
};
}