Merge pull request #205000 from figsoda/sccache

sccache: 0.3.1 -> 0.3.3
This commit is contained in:
Doron Behar 2022-12-09 08:21:52 +02:00 committed by GitHub
commit 9e4a15be2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,17 @@
{ stdenv, lib, fetchFromGitHub, rustPlatform, pkg-config, openssl, Security }: { lib, fetchFromGitHub, rustPlatform, pkg-config, openssl, stdenv, Security }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
version = "0.3.1"; version = "0.3.3";
pname = "sccache"; pname = "sccache";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mozilla"; owner = "mozilla";
repo = "sccache"; repo = "sccache";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-SjGtFkFyHJRnFg3QwXksrV+T08oku80vcivLzFWt94g="; sha256 = "sha256-XzAU8Rs0/Q1KvE2tF0zzv9d2/a07BzZQbVzOdrPlbSk=";
}; };
cargoSha256 = "sha256-cd/4otvrneOqntBzNZP1/RY0jg/NYeugiblr1tatITI="; cargoSha256 = "sha256-r5rIuulcPB5Y4AkbUPswf3W4DZ9Pc8auzmDDvSOOZEA=";
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security; buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
@ -26,7 +26,8 @@ rustPlatform.buildRustPackage rec {
meta = with lib; { meta = with lib; {
description = "Ccache with Cloud Storage"; description = "Ccache with Cloud Storage";
homepage = "https://github.com/mozilla/sccache"; homepage = "https://github.com/mozilla/sccache";
maintainers = with maintainers; [ doronbehar ]; changelog = "https://github.com/mozilla/sccache/releases/tag/v${version}";
maintainers = with maintainers; [ doronbehar figsoda ];
license = licenses.asl20; license = licenses.asl20;
}; };
} }