2021-05-26 21:04:27 +01: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 21:04:27 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "facundoolano";
|
|
|
|
repo = pname;
|
2021-05-30 17:59:16 +01:00
|
|
|
rev = version;
|
2022-02-13 03:52:27 +00:00
|
|
|
sha256 = "sha256-rhG/EK68PWvQYoZdjhk0w7oNmh/QiTaAt4/WgEkgxEA=";
|
2021-05-26 21:04:27 +01:00
|
|
|
};
|
|
|
|
|
2022-02-13 03:52:27 +00:00
|
|
|
cargoSha256 = "sha256-YXQohmDmkClziaLkL2N4cGURZ0tewyt7BuNY4hS+a4w=";
|
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;
|
2021-12-01 23:19:48 +00:00
|
|
|
maintainers = with maintainers; [ lom ];
|
2021-05-26 21:04:27 +01:00
|
|
|
};
|
|
|
|
}
|