From 62cc7966120a8cb873e6ff1e4c8a0314e948e419 Mon Sep 17 00:00:00 2001 From: Oleksii Filonenko Date: Thu, 20 Oct 2022 16:50:31 +0300 Subject: gitAndTools.gex: init at 0.3.3 --- .../git-and-tools/gex/default.nix | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkgs/applications/version-management/git-and-tools/gex/default.nix (limited to 'pkgs/applications/version-management') 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 ]; + }; +} -- cgit 1.4.1