about summary refs log tree commit diff
path: root/pkgs/by-name/gi/gitprompt-rs/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/gi/gitprompt-rs/package.nix')
-rw-r--r--pkgs/by-name/gi/gitprompt-rs/package.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/by-name/gi/gitprompt-rs/package.nix b/pkgs/by-name/gi/gitprompt-rs/package.nix
new file mode 100644
index 0000000000000..b7b1987ae53aa
--- /dev/null
+++ b/pkgs/by-name/gi/gitprompt-rs/package.nix
@@ -0,0 +1,38 @@
+{
+  lib,
+  fetchFromGitHub,
+  rustPlatform,
+  git,
+}:
+let
+  version = "0.3.0";
+in
+rustPlatform.buildRustPackage {
+  pname = "gitprompt-rs";
+  inherit version;
+
+  src = fetchFromGitHub {
+    owner = "9ary";
+    repo = "gitprompt-rs";
+    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 = {
+    description = "Simple Git prompt";
+    homepage = "https://github.com/9ary/gitprompt-rs";
+    license = lib.licenses.mpl20;
+    maintainers = with lib.maintainers; [
+      isabelroses
+      cafkafk
+    ];
+    mainProgram = "gitprompt-rs";
+  };
+}