about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorOleksii Filonenko <brightone@protonmail.com>2022-10-20 16:59:25 +0300
committerGitHub <noreply@github.com>2022-10-20 16:59:25 +0300
commit00bfcc63f3a92db55675a3474f8e8c7d8101fd1d (patch)
treefdcc1d892e56765afceba720fcbd4b51e97b6243 /pkgs/applications
parentd473597e332a0bf83f826192684dad128ced147f (diff)
parent62cc7966120a8cb873e6ff1e4c8a0314e948e419 (diff)
Merge pull request #196931 from Br1ght0ne/gex-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 ];
+  };
+}