lol

Merge pull request #210498 from yanganto/gitoxide-0.20

gitoxide: 0.19.0 -> 0.20.0

authored by

figsoda and committed by
GitHub
7983a94d fb020498

+6 -5
+6 -5
pkgs/applications/version-management/gitoxide/default.nix
··· 7 7 , libiconv 8 8 , Security 9 9 , SystemConfiguration 10 + , curl 10 11 , openssl 11 12 }: 12 13 13 14 rustPlatform.buildRustPackage rec { 14 15 pname = "gitoxide"; 15 - version = "0.19.0"; 16 + version = "0.20.0"; 16 17 17 18 src = fetchFromGitHub { 18 19 owner = "Byron"; 19 20 repo = "gitoxide"; 20 21 rev = "v${version}"; 21 - sha256 = "sha256-GGXujTn5Xb63vKIycj5o9+PCsMN1Kp3RCSg1wiM31qA="; 22 + sha256 = "sha256-8+4AEX4NPflhAB1rZHaz0XPycoL5T3z20ZKlNRdUEdw="; 22 23 }; 23 24 24 - cargoSha256 = "sha256-MAZhrd9CtFOIAaUUbXplBo+eo6Zaws2LIRkPoX4HztE="; 25 + cargoSha256 = "sha256-ybsrrJFH4xKcxRQCI+ypfp5biCrlIidAog01SFCx1ms="; 25 26 26 27 nativeBuildInputs = [ cmake pkg-config ]; 27 - buildInputs = if stdenv.isDarwin 28 + buildInputs = [ curl ] ++ (if stdenv.isDarwin 28 29 then [ libiconv Security SystemConfiguration ] 29 - else [ openssl ]; 30 + else [ openssl ]); 30 31 31 32 # Needed to get openssl-sys to use pkg-config. 32 33 OPENSSL_NO_VENDOR = 1;