summary refs log tree commit diff
path: root/pkgs/development/tools/misc/ccache
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-11-05 08:32:27 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2014-11-06 00:32:43 +0000
commitfa09f72162a80d803e7dae6c14ca7d319a37d4e3 (patch)
treed217e8c09604d8f8203cb811a9407ba223f5da82 /pkgs/development/tools/misc/ccache
parent9ad81702f7337716b8fcdee6eb12d9586360b29f (diff)
downloadnixlib-fa09f72162a80d803e7dae6c14ca7d319a37d4e3.tar
nixlib-fa09f72162a80d803e7dae6c14ca7d319a37d4e3.tar.gz
nixlib-fa09f72162a80d803e7dae6c14ca7d319a37d4e3.tar.bz2
nixlib-fa09f72162a80d803e7dae6c14ca7d319a37d4e3.tar.lz
nixlib-fa09f72162a80d803e7dae6c14ca7d319a37d4e3.tar.xz
nixlib-fa09f72162a80d803e7dae6c14ca7d319a37d4e3.tar.zst
nixlib-fa09f72162a80d803e7dae6c14ca7d319a37d4e3.zip
ccache: update from 3.1.9 to 3.1.10
Diffstat (limited to 'pkgs/development/tools/misc/ccache')
-rw-r--r--pkgs/development/tools/misc/ccache/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix
index 3dd634274f3e..56f8cefe07ca 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.9";
+  name = "ccache-3.1.10";
   src = fetchurl {
-    url = http://samba.org/ftp/ccache/ccache-3.1.9.tar.gz;
-    sha256 = "0ixlxqv1xyacwgg0k9b4a6by07c7k75y0xbr8dp76jvyada0c9x2";
+    url = http://samba.org/ftp/ccache/ccache-3.1.10.tar.gz;
+    sha256 = "0fzxa45q7wfm63zrak65wh31w7pnsp0k65fxv00cgmf454as4dza";
   };
 
   buildInputs = [ zlib ];
@@ -40,7 +40,7 @@ stdenv.mkDerivation {
   meta = {
     description = "Compiler cache for fast recompilation of C/C++ code";
     homepage = http://ccache.samba.org/;
-    license = "GPL";
+    license = stdenv.lib.licenses.gpl3Plus;
   };
 };
 in