summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-04-17 18:24:11 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-04-17 18:25:07 +0200
commit038b18496ceb905be99e19028d5585c178723929 (patch)
tree9df8c62a85c3df6526fe47b7f8aac626a2ec1e05 /pkgs/development
parentce47fb38d8206c5c1674baf9ed048a5660186c24 (diff)
downloadnixlib-038b18496ceb905be99e19028d5585c178723929.tar
nixlib-038b18496ceb905be99e19028d5585c178723929.tar.gz
nixlib-038b18496ceb905be99e19028d5585c178723929.tar.bz2
nixlib-038b18496ceb905be99e19028d5585c178723929.tar.lz
nixlib-038b18496ceb905be99e19028d5585c178723929.tar.xz
nixlib-038b18496ceb905be99e19028d5585c178723929.tar.zst
nixlib-038b18496ceb905be99e19028d5585c178723929.zip
ccache: 3.2.4 -> 3.2.5
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/misc/ccache/default.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix
index 4a278e052fa2..f344156f6bc5 100644
--- a/pkgs/development/tools/misc/ccache/default.nix
+++ b/pkgs/development/tools/misc/ccache/default.nix
@@ -2,22 +2,13 @@
 
 let ccache = stdenv.mkDerivation rec {
   name = "ccache-${version}";
-  version = "3.2.4";
+  version = "3.2.5";
 
   src = fetchurl {
-    sha256 = "0pga3hvd80f2p7mz88jmmbwzxh4vn5ihyjx5f6na8y2fclzsjg8w";
+    sha256 = "11db1g109g0g5si0s50yd99ja5f8j4asxb081clvx78r9d9i2w0i";
     url = "mirror://samba/ccache/${name}.tar.xz";
   };
 
-  patches = [
-    (fetchpatch {
-      sha256 = "1gwnxx1w2nx1szi0v5vgwcx9i23pxygkqqnrawhal68qgz5c34wh";
-      name = "dont-update-manifest-in-readonly-modes.patch";
-      # The primary git.samba.org doesn't seem to like our curl much...
-      url = "https://github.com/jrosdahl/ccache/commit/a7ab503f07e31ebeaaec34fbaa30e264308a299d.patch";
-    })
-  ];
-
   buildInputs = [ zlib ];
 
   postPatch = ''