2019-06-23 07:14:26 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cargo, rustc, rustPlatform, pkgconfig, glib, openssl, darwin }:
|
2019-06-22 12:16:59 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-10-24 15:11:18 +01:00
|
|
|
version = "0.2.12";
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "sccache";
|
2019-06-22 12:16:59 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mozilla";
|
|
|
|
repo = "sccache";
|
|
|
|
rev = version;
|
2019-10-24 15:11:18 +01:00
|
|
|
sha256 = "1yd3rfp032crwlmfn2p3z12f67q7bxm78fhvdlc7azm2a4hkif4k";
|
2019-06-22 12:16:59 +01:00
|
|
|
};
|
2020-02-16 04:04:11 +00:00
|
|
|
cargoSha256 = "17i3m7hj7kvdbicabmz2wl3g6s6c8lcyi3pririkq77jxm87shfh";
|
2019-08-12 09:56:22 +01:00
|
|
|
|
2019-06-22 12:16:59 +01:00
|
|
|
cargoBuildFlags = [ "--features=all" ];
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig cargo rustc
|
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
openssl
|
2019-06-23 07:14:26 +01:00
|
|
|
] ++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
2019-06-22 12:16:59 +01:00
|
|
|
# Tests fail because of client server setup which is not possible inside the pure environment,
|
|
|
|
# see https://github.com/mozilla/sccache/issues/460
|
|
|
|
checkPhase = null;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Ccache with Cloud Storage";
|
|
|
|
homepage = https://github.com/mozilla/sccache;
|
|
|
|
maintainers = with maintainers; [ doronbehar ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|