nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #196931 from Br1ght0ne/gex-0.3.3

authored by

Oleksii Filonenko and committed by
GitHub
00bfcc63 d473597e

+28
+26
pkgs/applications/version-management/git-and-tools/gex/default.nix
··· 1 + { lib 2 + , stdenv 3 + , rustPlatform 4 + , fetchFromGitHub 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "gex"; 9 + version = "0.3.3"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "Piturnah"; 13 + repo = pname; 14 + rev = "v${version}"; 15 + hash = "sha256-oUcQKpZqqb8wZDpdFfpxLpwdfQlokJE5bsoPwxh+JMM="; 16 + }; 17 + 18 + cargoHash = "sha256-ZFrIlNysjlXI8n78N2Hkff6gAplipxSQXUWG8HJq8fs="; 19 + 20 + meta = with lib; { 21 + description = "Git Explorer: cross-platform git workflow improvement tool inspired by Magit"; 22 + homepage = "https://github.com/Piturnah/gex"; 23 + license = with licenses; [ asl20 /* or */ mit ]; 24 + maintainers = with maintainers; [ Br1ght0ne ]; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 6859 6859 6860 6860 gexiv2 = callPackage ../development/libraries/gexiv2 { }; 6861 6861 6862 + gex = callPackage ../applications/version-management/git-and-tools/gex { }; 6863 + 6862 6864 gftp = callPackage ../applications/networking/ftp/gftp { 6863 6865 gtk = gtk2; 6864 6866 };