Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

sccache: 0.5.1 -> 0.5.2

Diff: https://github.com/mozilla/sccache/compare/v0.5.1...v0.5.2

Changelog: https://github.com/mozilla/sccache/releases/tag/v0.5.2

figsoda bddbcf5d 39addc62

+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.5.1"; 4 + version = "0.5.2"; 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-RcosHR+PD78hk7XMClUCWICrtWR/9OxIuyCFy2EK/Qs="; 11 + sha256 = "sha256-CriVsjxbfe3iJ0FD9HAve3QunBt3rWkzWqQDuJcPR9A="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-qDFBIU/IbQjLpTulI8tolFg54+2m2mV/JHuX4bsJYWw="; 14 + cargoSha256 = "sha256-/pr+YT0ZejF0EpxZUlUBS21crtuhE/M222kvLAXaoyU="; 15 15 16 16 nativeBuildInputs = [ pkg-config ]; 17 17 buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;