Skip to content

Commit c601535

Browse files
committed
1 parent 8501a16 commit c601535

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

pkgs/development/tools/misc/sccache/default.nix

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
{ lib, fetchFromGitHub, rustPlatform, pkg-config, openssl, stdenv, Security }:
22

33
rustPlatform.buildRustPackage rec {
4-
version = "0.3.3";
4+
version = "0.4.0";
55
pname = "sccache";
66

77
src = fetchFromGitHub {
88
owner = "mozilla";
99
repo = "sccache";
1010
rev = "v${version}";
11-
sha256 = "sha256-XzAU8Rs0/Q1KvE2tF0zzv9d2/a07BzZQbVzOdrPlbSk=";
11+
sha256 = "sha256-6ok8N5y/Wtz4t0414GHT7qc5D2ysw97oKASbKHPLXN8=";
1212
};
1313

14-
cargoSha256 = "sha256-r5rIuulcPB5Y4AkbUPswf3W4DZ9Pc8auzmDDvSOOZEA=";
14+
cargoSha256 = "sha256-dxjVlbnewFdnO294L+9kQE8owlgyPaxepxtmC7V9nGk=";
1515

1616
nativeBuildInputs = [ pkg-config ];
1717
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
1818

19-
# sccache-dist is only supported on x86_64 Linux machines.
20-
buildFeatures = lib.optionals (stdenv.system == "x86_64-linux") [ "dist-client" "dist-server" ];
21-
2219
# Tests fail because of client server setup which is not possible inside the pure environment,
2320
# see https://github.com/mozilla/sccache/issues/460
2421
doCheck = false;

0 commit comments

Comments
 (0)