2022-12-07 14:40:47 +00:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform, pkg-config, openssl, stdenv, Security }:
|
2019-06-22 11:16:59 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2023-06-27 13:50:48 +00:00
|
|
|
version = "0.5.4";
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "sccache";
|
2019-06-22 11:16:59 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mozilla";
|
|
|
|
repo = "sccache";
|
2021-02-08 16:59:38 +00:00
|
|
|
rev = "v${version}";
|
2023-06-27 13:50:48 +00:00
|
|
|
sha256 = "sha256-CaZM8c1dref98VL240PEUQE8XtWAvVlQSGnPQspg+jw=";
|
2019-06-22 11:16:59 +00:00
|
|
|
};
|
2021-02-08 16:59:38 +00:00
|
|
|
|
2023-06-27 13:50:48 +00:00
|
|
|
cargoSha256 = "sha256-F4lnE5ig3UnZJOdxpnGLesDP3rgEOFzZO0WGQ8mtj+o=";
|
2019-08-12 08:56:22 +00:00
|
|
|
|
2021-02-08 16:59:38 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
|
|
|
|
|
2019-06-22 11:16:59 +00:00
|
|
|
# Tests fail because of client server setup which is not possible inside the pure environment,
|
|
|
|
# see https://github.com/mozilla/sccache/issues/460
|
2021-02-08 16:59:38 +00:00
|
|
|
doCheck = false;
|
2019-06-22 11:16:59 +00:00
|
|
|
|
2021-01-23 08:47:37 +00:00
|
|
|
meta = with lib; {
|
2019-06-22 11:16:59 +00:00
|
|
|
description = "Ccache with Cloud Storage";
|
2020-02-25 07:12:47 +00:00
|
|
|
homepage = "https://github.com/mozilla/sccache";
|
2022-12-07 14:40:47 +00:00
|
|
|
changelog = "https://github.com/mozilla/sccache/releases/tag/v${version}";
|
|
|
|
maintainers = with maintainers; [ doronbehar figsoda ];
|
2019-06-22 11:16:59 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|