Merge pull request #196931 from Br1ght0ne/gex-0.3.3
This commit is contained in:
commit
00bfcc63f3
2 changed files with 28 additions and 0 deletions
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6859,6 +6859,8 @@ with pkgs;
|
||||||
|
|
||||||
gexiv2 = callPackage ../development/libraries/gexiv2 { };
|
gexiv2 = callPackage ../development/libraries/gexiv2 { };
|
||||||
|
|
||||||
|
gex = callPackage ../applications/version-management/git-and-tools/gex { };
|
||||||
|
|
||||||
gftp = callPackage ../applications/networking/ftp/gftp {
|
gftp = callPackage ../applications/networking/ftp/gftp {
|
||||||
gtk = gtk2;
|
gtk = gtk2;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue