summary refs log tree commit diff
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2015-01-26 17:48:56 -0600
committerAustin Seipp <aseipp@pobox.com>2015-01-26 17:48:56 -0600
commitfbb81f2780ccb4a98ca85e08a47ca0b700573981 (patch)
tree61ff79e75c46f4b8ef74f90cb45d18af55702c73
parent5a73cda9b500550b4bb616a2d42f793de3c12276 (diff)
parent9a28d27c6a9181f01fb3b5ceb0eb90a440aab812 (diff)
downloadnixpkgs-fbb81f2780ccb4a98ca85e08a47ca0b700573981.tar
nixpkgs-fbb81f2780ccb4a98ca85e08a47ca0b700573981.tar.gz
nixpkgs-fbb81f2780ccb4a98ca85e08a47ca0b700573981.tar.bz2
nixpkgs-fbb81f2780ccb4a98ca85e08a47ca0b700573981.tar.lz
nixpkgs-fbb81f2780ccb4a98ca85e08a47ca0b700573981.tar.xz
nixpkgs-fbb81f2780ccb4a98ca85e08a47ca0b700573981.tar.zst
nixpkgs-fbb81f2780ccb4a98ca85e08a47ca0b700573981.zip
Merge pull request #5971 from nckx/update-ccache
Update ccache 3.1.10 -> 3.2.1
-rw-r--r--pkgs/development/tools/misc/ccache/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix
index 4bccbaff314..a7eeda7c2d5 100644
--- a/pkgs/development/tools/misc/ccache/default.nix
+++ b/pkgs/development/tools/misc/ccache/default.nix
@@ -3,10 +3,10 @@
 let
   ccache =
 stdenv.mkDerivation {
-  name = "ccache-3.1.10";
+  name = "ccache-3.2.1";
   src = fetchurl {
-    url = http://samba.org/ftp/ccache/ccache-3.1.10.tar.gz;
-    sha256 = "0fzxa45q7wfm63zrak65wh31w7pnsp0k65fxv00cgmf454as4dza";
+    url = http://samba.org/ftp/ccache/ccache-3.2.1.tar.xz;
+    sha256 = "17dxb0adha2bqzb2r8rcc3kl9mk7y6vrvlh181liivrc3m7g6al7";
   };
 
   buildInputs = [ zlib ];
@@ -36,10 +36,11 @@ stdenv.mkDerivation {
       '');
   };
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Compiler cache for fast recompilation of C/C++ code";
     homepage = http://ccache.samba.org/;
-    license = stdenv.lib.licenses.gpl3Plus;
+    license = with licenses; gpl3Plus;
+    maintainers = with maintainers; [ nckx ];
   };
 };
 in