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
This commit is contained in:
Daniël de Kok 2021-03-08 08:00:18 +01:00
parent 2a0d3cc907
commit a094d0e0e4

View file

@ -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" ];
};
}