From e8ca6b7a62428107d15810981efdef7cbe77c703 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 9 Oct 2015 21:59:51 +0200 Subject: [PATCH] ccache 3.2.3 -> 3.2.4 Bug fixes: - Fixed build error related to zlib on systems with older make versions (regression in ccache 3.2.3). - Made conversion-to-bool explicit to avoid build warnings (and potential runtime errors) on legacy systems. - Improved signal handling: Kill compiler on SIGTERM; wait for compiler to exit before exiting; die appropriately. - Minor fixes related to Windows support. - The correct compression level is now used if compression is requested. - Fixed a bug where cache cleanup could be run too early for caches larger than 64 GiB on 32-bit systems. --- pkgs/development/tools/misc/ccache/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix index 41a6095a9a469..fb6d03c6e85a6 100644 --- a/pkgs/development/tools/misc/ccache/default.nix +++ b/pkgs/development/tools/misc/ccache/default.nix @@ -2,8 +2,8 @@ let name = "ccache-${version}"; - version = "3.2.3"; - sha256 = "03k0fvblwqb80zwdgas8a5fjrwvghgsn587wp3lfr0jr8gy1817c"; + version = "3.2.4"; + sha256 = "0pga3hvd80f2p7mz88jmmbwzxh4vn5ihyjx5f6na8y2fclzsjg8w"; ccache = stdenv.mkDerivation {