From 041a124886908f0fe9c9d4fa4ba4f82c27426787 Mon Sep 17 00:00:00 2001 From: Tim Kleinschmidt Date: Tue, 4 Jul 2023 08:57:48 +0200 Subject: [PATCH] gex: 0.3.8 -> 0.4.0 --- pkgs/applications/version-management/gex/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/version-management/gex/default.nix b/pkgs/applications/version-management/gex/default.nix index c8b2e5005bca..7bb39ef94e7f 100644 --- a/pkgs/applications/version-management/gex/default.nix +++ b/pkgs/applications/version-management/gex/default.nix @@ -3,26 +3,24 @@ , rustPlatform , fetchFromGitHub , pkg-config -, openssl -# waiting on gex to update to libgit2-sys >= 0.15 -, libgit2_1_5 +, libgit2 }: rustPlatform.buildRustPackage rec { pname = "gex"; - version = "0.3.8"; + version = "0.4.0"; src = fetchFromGitHub { owner = "Piturnah"; repo = pname; rev = "v${version}"; - hash = "sha256-pjyS0H25wdcexpzZ2vVzGTwDPzyvA9PDgzz81yLGTOY="; + hash = "sha256-eRforLvRVSrFWnI5UZEWr1L4UM3ABjAIvui1E1hzk5s="; }; nativeBuildInputs = [ pkg-config ]; - buildInputs = [ openssl libgit2_1_5 ]; + buildInputs = [ libgit2 ]; - cargoHash = "sha256-+FwXm3QN9bt//dWqzkBzsGigyl1SSY4/P29QtV75V6M="; + cargoHash = "sha256-OEaNERozmJL8gYe33V/m4HQNHi2I4KHpI6PTwFQkPSs="; meta = with lib; { description = "Git Explorer: cross-platform git workflow improvement tool inspired by Magit";