From a094d0e0e4804dfa2a28eb81b4db683aee2d2604 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Mon, 8 Mar 2021 08:00:18 +0100 Subject: [PATCH] sccache: change platforms to x86_64-linux Other platforms are not supported, see: https://github.com/mozilla/sccache/blob/master/src/bin/sccache-dist/main.rs#L70 --- pkgs/development/tools/misc/sccache/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/sccache/default.nix b/pkgs/development/tools/misc/sccache/default.nix index 214db2ff012..ccadaa8aeb4 100644 --- a/pkgs/development/tools/misc/sccache/default.nix +++ b/pkgs/development/tools/misc/sccache/default.nix @@ -27,6 +27,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/mozilla/sccache"; maintainers = with maintainers; [ doronbehar ]; license = licenses.asl20; - platforms = platforms.unix; + platforms = [ "x86_64-linux" ]; }; }