gitAndTools.gex: init at 0.3.3

main
Oleksii Filonenko 2 years ago
parent aeda5f2b74
commit 62cc796612
No known key found for this signature in database
GPG Key ID: E12742092CE3D972
  1. 26
      pkgs/applications/version-management/git-and-tools/gex/default.nix
  2. 2
      pkgs/top-level/all-packages.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 ];
};
}

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

Loading…
Cancel
Save