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

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

26 lines
638 B
Nix
Raw Normal View History

2021-05-26 20:04:27 +00:00
{ rustPlatform, fetchFromGitHub, lib }:
rustPlatform.buildRustPackage rec {
pname = "rpg-cli";
2022-02-13 03:52:27 +00:00
version = "1.0.1";
2021-05-26 20:04:27 +00:00
src = fetchFromGitHub {
owner = "facundoolano";
repo = pname;
2021-05-30 16:59:16 +00:00
rev = version;
2022-02-13 03:52:27 +00:00
sha256 = "sha256-rhG/EK68PWvQYoZdjhk0w7oNmh/QiTaAt4/WgEkgxEA=";
2021-05-26 20:04:27 +00:00
};
2022-02-13 03:52:27 +00:00
cargoSha256 = "sha256-YXQohmDmkClziaLkL2N4cGURZ0tewyt7BuNY4hS+a4w=";
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; [ lom ];
2021-05-26 20:04:27 +00:00
};
}