lol

gex: 0.3.3 -> 0.3.8 (#225549)

authored by

Tim Kleinschmidt and committed by
GitHub
b7edbb09 58f16ff9

+11 -4
+11 -4
pkgs/applications/version-management/gex/default.nix
··· 2 2 , stdenv 3 3 , rustPlatform 4 4 , fetchFromGitHub 5 + , pkg-config 6 + , openssl 7 + # waiting on gex to update to libgit2-sys >= 0.15 8 + , libgit2_1_5 5 9 }: 6 10 7 11 rustPlatform.buildRustPackage rec { 8 12 pname = "gex"; 9 - version = "0.3.3"; 13 + version = "0.3.8"; 10 14 11 15 src = fetchFromGitHub { 12 16 owner = "Piturnah"; 13 17 repo = pname; 14 18 rev = "v${version}"; 15 - hash = "sha256-oUcQKpZqqb8wZDpdFfpxLpwdfQlokJE5bsoPwxh+JMM="; 19 + hash = "sha256-pjyS0H25wdcexpzZ2vVzGTwDPzyvA9PDgzz81yLGTOY="; 16 20 }; 17 21 18 - cargoHash = "sha256-ZFrIlNysjlXI8n78N2Hkff6gAplipxSQXUWG8HJq8fs="; 22 + nativeBuildInputs = [ pkg-config ]; 23 + buildInputs = [ openssl libgit2_1_5 ]; 24 + 25 + cargoHash = "sha256-+FwXm3QN9bt//dWqzkBzsGigyl1SSY4/P29QtV75V6M="; 19 26 20 27 meta = with lib; { 21 28 description = "Git Explorer: cross-platform git workflow improvement tool inspired by Magit"; 22 29 homepage = "https://github.com/Piturnah/gex"; 23 30 license = with licenses; [ asl20 /* or */ mit ]; 24 - maintainers = with maintainers; [ Br1ght0ne ]; 31 + maintainers = with maintainers; [ azd325 Br1ght0ne ]; 25 32 }; 26 33 }