gitAndTools.gex: init at 0.3.3

This commit is contained in:
Oleksii Filonenko 2022-10-20 16:50:31 +03:00
parent aeda5f2b74
commit 62cc796612
No known key found for this signature in database
GPG Key ID: E12742092CE3D972
2 changed files with 28 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -6655,6 +6655,8 @@ with pkgs;
gexiv2 = callPackage ../development/libraries/gexiv2 { };
gex = callPackage ../applications/version-management/git-and-tools/gex { };
gftp = callPackage ../applications/networking/ftp/gftp {
gtk = gtk2;
};