summary refs log tree commit diff
path: root/pkgs/development/tools/misc/ccache
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-01-26 04:41:30 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-01-26 04:41:30 +0100
commit9a28d27c6a9181f01fb3b5ceb0eb90a440aab812 (patch)
tree09419526c66b9084175489be1bfeb5d0ebf03601 /pkgs/development/tools/misc/ccache
parent61816b06e7f908c1f33c01312218e495f23426f1 (diff)
downloadnixpkgs-9a28d27c6a9181f01fb3b5ceb0eb90a440aab812.tar
nixpkgs-9a28d27c6a9181f01fb3b5ceb0eb90a440aab812.tar.gz
nixpkgs-9a28d27c6a9181f01fb3b5ceb0eb90a440aab812.tar.bz2
nixpkgs-9a28d27c6a9181f01fb3b5ceb0eb90a440aab812.tar.lz
nixpkgs-9a28d27c6a9181f01fb3b5ceb0eb90a440aab812.tar.xz
nixpkgs-9a28d27c6a9181f01fb3b5ceb0eb90a440aab812.tar.zst
nixpkgs-9a28d27c6a9181f01fb3b5ceb0eb90a440aab812.zip
Update ccache 3.1.10 -> 3.2.1
Diffstat (limited to 'pkgs/development/tools/misc/ccache')
-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