summary refs log tree commit diff
path: root/pkgs/development/tools/misc/ccache
diff options
context:
space:
mode:
authorTimofei Kushnir <timophey@rdp.ru>2018-02-28 16:51:05 +0300
committerRobin Gloster <mail@glob.in>2018-03-01 15:36:27 +0100
commit15893aab4795d44976151e30459da1e3f7f77de2 (patch)
tree45277f6d93a1000eccd4b897ce957ca96caf217f /pkgs/development/tools/misc/ccache
parentc24c0d560d252036e351900861d1aed050341ea1 (diff)
downloadnixpkgs-15893aab4795d44976151e30459da1e3f7f77de2.tar
nixpkgs-15893aab4795d44976151e30459da1e3f7f77de2.tar.gz
nixpkgs-15893aab4795d44976151e30459da1e3f7f77de2.tar.bz2
nixpkgs-15893aab4795d44976151e30459da1e3f7f77de2.tar.lz
nixpkgs-15893aab4795d44976151e30459da1e3f7f77de2.tar.xz
nixpkgs-15893aab4795d44976151e30459da1e3f7f77de2.tar.zst
nixpkgs-15893aab4795d44976151e30459da1e3f7f77de2.zip
Follow-ups to contributors' comments
- `gcc` was removed from `nativeBuildInputs`
- ccache version updated to 3.4.1
- added `man` subpackage
Diffstat (limited to 'pkgs/development/tools/misc/ccache')
-rw-r--r--pkgs/development/tools/misc/ccache/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix
index 9d44e0b707b..34d1d8a829b 100644
--- a/pkgs/development/tools/misc/ccache/default.nix
+++ b/pkgs/development/tools/misc/ccache/default.nix
@@ -1,18 +1,20 @@
-{ stdenv, fetchurl, fetchpatch, runCommand, perl, gcc, zlib, makeWrapper }:
+{ stdenv, fetchurl, fetchpatch, runCommand, perl, zlib, makeWrapper }:
 
 let ccache = stdenv.mkDerivation rec {
   name = "ccache-${version}";
-  version = "3.4";
+  version = "3.4.1";
 
   src = fetchurl {
-    sha256 = "0sfisvjs2iham29flxgmnfg7kzqz66bhk6q0qcwbdv1n569say5j";
+    sha256 = "1pppi4jbkkj641cdynmc35jaj40jjicw7gj75ran5qs5886jcblc";
     url = "mirror://samba/ccache/${name}.tar.xz";
   };
 
-  nativeBuildInputs = [ perl gcc ];
+  nativeBuildInputs = [ perl ];
 
   buildInputs = [ zlib ];
 
+  outputs = [ "out" "man" ];
+
   # non to be fail on filesystems with unconventional blocksizes (zfs on Hydra?)
   patches = [
     ./fix-debug-prefix-map-suite.patch