summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladyslav M <dywedir@gra.red>2020-02-25 12:00:14 +0200
committerGitHub <noreply@github.com>2020-02-25 12:00:14 +0200
commitd363be93b4957fce418a00340edc8b9bad5a1c88 (patch)
treea1b456ba2d0b16bc6caf72936e48e2696c19705e /pkgs
parent52a076e3a4d8aace83deefdd48a76dc0b6d4902c (diff)
parent0c3ca28e8eb426fd358c21e06bd5bc6fe371c4ca (diff)
downloadnixpkgs-d363be93b4957fce418a00340edc8b9bad5a1c88.tar
nixpkgs-d363be93b4957fce418a00340edc8b9bad5a1c88.tar.gz
nixpkgs-d363be93b4957fce418a00340edc8b9bad5a1c88.tar.bz2
nixpkgs-d363be93b4957fce418a00340edc8b9bad5a1c88.tar.lz
nixpkgs-d363be93b4957fce418a00340edc8b9bad5a1c88.tar.xz
nixpkgs-d363be93b4957fce418a00340edc8b9bad5a1c88.tar.zst
nixpkgs-d363be93b4957fce418a00340edc8b9bad5a1c88.zip
Merge pull request #81008 from doronbehar/update-sccache
sccache: 0.2.12 -> 0.2.13
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/sccache/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/sccache/default.nix b/pkgs/development/tools/misc/sccache/default.nix
index 140b7679ab2..51c22199cc1 100644
--- a/pkgs/development/tools/misc/sccache/default.nix
+++ b/pkgs/development/tools/misc/sccache/default.nix
@@ -1,16 +1,16 @@
 { stdenv, fetchFromGitHub, cargo, rustc, rustPlatform, pkgconfig, glib, openssl, darwin }:
 
 rustPlatform.buildRustPackage rec {
-  version = "0.2.12";
+  version = "0.2.13";
   pname = "sccache";
 
   src = fetchFromGitHub {
     owner = "mozilla";
     repo = "sccache";
     rev = version;
-    sha256 = "1yd3rfp032crwlmfn2p3z12f67q7bxm78fhvdlc7azm2a4hkif4k";
+    sha256 = "19z9fdkn3bnr8q33m66h2by6bs6kmhw3a2lq2n8bywmnhrjwhxpw";
   };
-  cargoSha256 = "17i3m7hj7kvdbicabmz2wl3g6s6c8lcyi3pririkq77jxm87shfh";
+  cargoSha256 = "1pm7il0x7i9mqx4vsmkcs8nq0dqr5ck3x3x7la6k39igaxn9vkwz";
 
   cargoBuildFlags = [ "--features=all" ];
   nativeBuildInputs = [
@@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec {
 
   meta = with stdenv.lib; {
     description = "Ccache with Cloud Storage";
-    homepage = https://github.com/mozilla/sccache;
+    homepage = "https://github.com/mozilla/sccache";
     maintainers = with maintainers; [ doronbehar ];
     license = licenses.asl20;
     platforms = platforms.unix;