1{ rustPlatform, fetchFromGitHub, lib }:
2
3rustPlatform.buildRustPackage rec {
4 pname = "rpg-cli";
5 version = "1.0.1";
6
7 src = fetchFromGitHub {
8 owner = "facundoolano";
9 repo = pname;
10 rev = version;
11 sha256 = "sha256-rhG/EK68PWvQYoZdjhk0w7oNmh/QiTaAt4/WgEkgxEA=";
12 };
13
14 cargoSha256 = "sha256-YXQohmDmkClziaLkL2N4cGURZ0tewyt7BuNY4hS+a4w=";
15
16 # tests assume the authors macbook, and thus fail
17 doCheck = false;
18
19 meta = with lib; {
20 description = "Your filesystem as a dungeon";
21 homepage = "https://github.com/facundoolano/rpg-cli";
22 license = licenses.mit;
23 maintainers = with maintainers; [ lom ];
24 };
25}