mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
rpg-cli: init at 0.2.0
This commit is contained in:
parent
472dad9d2e
commit
bfcd6bd009
2 changed files with 29 additions and 0 deletions
27
pkgs/games/rpg-cli/default.nix
Normal file
27
pkgs/games/rpg-cli/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ rustPlatform, fetchFromGitHub, lib }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rpg-cli";
|
||||
version = "unstable-2021-05-27";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "facundoolano";
|
||||
repo = pname;
|
||||
# certain revision because the Cargo.lock was checked-in in that commit
|
||||
rev = "4d8a1dac79a1d29d79c0c874475037769dcef5a1";
|
||||
sha256 = "sha256-qfj1uij9lYyfyHFUnVi9I0ELOoObjFG2NS9UreC/xio=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-I+rSfuiGFdzA5zqPfvMPcERaQfiX92LW2NKjazWh9c4=";
|
||||
|
||||
# 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 ];
|
||||
mainProgram = "rpg-cli";
|
||||
};
|
||||
}
|
|
@ -8242,6 +8242,8 @@ in
|
|||
|
||||
rowhammer-test = callPackage ../tools/system/rowhammer-test { };
|
||||
|
||||
rpg-cli = callPackage ../games/rpg-cli { };
|
||||
|
||||
rpPPPoE = callPackage ../tools/networking/rp-pppoe { };
|
||||
|
||||
rpi-imager = libsForQt5.callPackage ../tools/misc/rpi-imager { };
|
||||
|
|
Loading…
Reference in a new issue