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