Merge pull request #268766 from figsoda/sccache

sccache: 0.7.2 -> 0.7.4

authored by figsoda and committed by GitHub b0dbba56 8c7c4286

+3 -3
+3 -3
pkgs/development/tools/misc/sccache/default.nix
··· 1 1 { lib, fetchFromGitHub, rustPlatform, pkg-config, openssl, stdenv, Security }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 - version = "0.7.2"; 4 + version = "0.7.4"; 5 5 pname = "sccache"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mozilla"; 9 9 repo = "sccache"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-hup9FM2KEBXRx6NleDGR01C0whJgR1KYyIrcIv2UE80="; 11 + sha256 = "sha256-r5Gev6tnaq8KY26Zl5aDxTomAFw3SPK3szrS4Kc14cI="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-Od1uaKZVAZaIDrsNheR1kYIjnmpnThlU7k3EIKdOjzM="; 14 + cargoSha256 = "sha256-4YeD4UxqhLRg2d2INbMAHrJBTlvuafrKEcjohBDx6CQ="; 15 15 16 16 nativeBuildInputs = [ pkg-config ]; 17 17 buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;