Follow-ups to contributors' comments

- `gcc` was removed from `nativeBuildInputs`
- ccache version updated to 3.4.1
- added `man` subpackage
This commit is contained in:
Timofei Kushnir 2018-02-28 16:51:05 +03:00 committed by Robin Gloster
parent c24c0d560d
commit 15893aab47

View file

@ -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