tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
sccache: 0.3.0 -> 0.3.1
authored by
R. Ryantm
and committed by
Yt
3 years ago
4be4e691
f3465641
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
misc
sccache
default.nix
+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
4
-
version = "0.3.0";
4
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
11
-
sha256 = "sha256-z4pLtSx1mg53AHPhT8P7BOEMCWHsieoS3rI0kEyJBcY=";
11
11
+
sha256 = "sha256-SjGtFkFyHJRnFg3QwXksrV+T08oku80vcivLzFWt94g=";
12
12
};
13
13
14
14
-
cargoSha256 = "sha256-4YF1fqthnWY6eu6J4SMwFG655KXdFCXmA9wxLyOOAw4=";
14
14
+
cargoSha256 = "sha256-cd/4otvrneOqntBzNZP1/RY0jg/NYeugiblr1tatITI=";
15
15
16
16
nativeBuildInputs = [ pkg-config ];
17
17
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;