about summary refs log tree commit diff
path: root/pkgs/games/rpg-cli/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/rpg-cli/default.nix')
-rw-r--r--pkgs/games/rpg-cli/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/games/rpg-cli/default.nix b/pkgs/games/rpg-cli/default.nix
deleted file mode 100644
index cdd6eb0e574a..000000000000
--- a/pkgs/games/rpg-cli/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ rustPlatform, fetchFromGitHub, lib }:
-
-rustPlatform.buildRustPackage rec {
-  pname = "rpg-cli";
-  version = "1.0.1";
-
-  src = fetchFromGitHub {
-    owner = "facundoolano";
-    repo = pname;
-    rev = version;
-    sha256 = "sha256-rhG/EK68PWvQYoZdjhk0w7oNmh/QiTaAt4/WgEkgxEA=";
-  };
-
-  cargoHash = "sha256-YXQohmDmkClziaLkL2N4cGURZ0tewyt7BuNY4hS+a4w=";
-
-  # tests assume the authors macbook, and thus fail
-  doCheck = false;
-
-  meta = with lib; {
-    description = "Your filesystem as a dungeon";
-    mainProgram = "rpg-cli";
-    homepage = "https://github.com/facundoolano/rpg-cli";
-    license = licenses.mit;
-    maintainers = with maintainers; [ lom ];
-  };
-}