about summary refs log tree commit diff
path: root/pkgs/applications/version-management/gitprompt-rs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/version-management/gitprompt-rs/default.nix')
-rw-r--r--pkgs/applications/version-management/gitprompt-rs/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/applications/version-management/gitprompt-rs/default.nix b/pkgs/applications/version-management/gitprompt-rs/default.nix
deleted file mode 100644
index 4df54080513cd..0000000000000
--- a/pkgs/applications/version-management/gitprompt-rs/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{
-  lib,
-  fetchFromGitHub,
-  rustPlatform,
-  git,
-}:
-rustPlatform.buildRustPackage rec {
-  pname = "gitprompt-rs";
-  version = "0.3.0";
-
-  src = fetchFromGitHub {
-    owner = "9ary";
-    repo = pname;
-    rev = version;
-    hash = "sha256-BqI3LbG7I/0wjzJaP8bxRwTM56joLqVaQCmAydX5vQM=";
-  };
-
-  cargoHash = "sha256-KBBdhiXEZz1/w6Zr/LogyceBdCn1ebfkVgGbtcdAeis=";
-
-  postPatch = ''
-    substituteInPlace src/main.rs \
-      --replace 'Command::new("git")' 'Command::new("${git}/bin/git")'
-  '';
-
-  meta = with lib; {
-    description = "Simple Git prompt";
-    homepage = "https://github.com/9ary/gitprompt-rs";
-    license = with licenses; [ mpl20 ];
-    maintainers = with maintainers; [ isabelroses cafkafk ];
-    mainProgram = "gitprompt-rs";
-  };
-}