sccache: 0.3.0 -> 0.3.1

authored by

R. Ryantm and committed by
Yt
4be4e691 f3465641

+3 -3
+3 -3
pkgs/development/tools/misc/sccache/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, rustPlatform, pkg-config, openssl, Security }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 - version = "0.3.0"; 4 + version = "0.3.1"; 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-z4pLtSx1mg53AHPhT8P7BOEMCWHsieoS3rI0kEyJBcY="; 11 + sha256 = "sha256-SjGtFkFyHJRnFg3QwXksrV+T08oku80vcivLzFWt94g="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-4YF1fqthnWY6eu6J4SMwFG655KXdFCXmA9wxLyOOAw4="; 14 + cargoSha256 = "sha256-cd/4otvrneOqntBzNZP1/RY0jg/NYeugiblr1tatITI="; 15 15 16 16 nativeBuildInputs = [ pkg-config ]; 17 17 buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;