about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorOleksii Filonenko <brightone@proton.me>2022-10-20 16:50:31 +0300
committerOleksii Filonenko <brightone@proton.me>2022-10-20 16:50:31 +0300
commit62cc7966120a8cb873e6ff1e4c8a0314e948e419 (patch)
tree198f5df95103526e50d5b282b621cdeb33f006fd /pkgs/applications
parentaeda5f2b74f5a0a75fb6926143081d58a8fb8e3c (diff)
gitAndTools.gex: init at 0.3.3
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/version-management/git-and-tools/gex/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/gex/default.nix b/pkgs/applications/version-management/git-and-tools/gex/default.nix
new file mode 100644
index 0000000000000..dbcc63419b750
--- /dev/null
+++ b/pkgs/applications/version-management/git-and-tools/gex/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, stdenv
+, rustPlatform
+, fetchFromGitHub
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "gex";
+  version = "0.3.3";
+
+  src = fetchFromGitHub {
+    owner = "Piturnah";
+    repo = pname;
+    rev = "v${version}";
+    hash = "sha256-oUcQKpZqqb8wZDpdFfpxLpwdfQlokJE5bsoPwxh+JMM=";
+  };
+
+  cargoHash = "sha256-ZFrIlNysjlXI8n78N2Hkff6gAplipxSQXUWG8HJq8fs=";
+
+  meta = with lib; {
+    description = "Git Explorer: cross-platform git workflow improvement tool inspired by Magit";
+    homepage = "https://github.com/Piturnah/gex";
+    license = with licenses; [ asl20 /* or */ mit ];
+    maintainers = with maintainers; [ Br1ght0ne ];
+  };
+}