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:
parent
c24c0d560d
commit
15893aab47
@ -1,18 +1,20 @@
|
|||||||
{ stdenv, fetchurl, fetchpatch, runCommand, perl, gcc, zlib, makeWrapper }:
|
{ stdenv, fetchurl, fetchpatch, runCommand, perl, zlib, makeWrapper }:
|
||||||
|
|
||||||
let ccache = stdenv.mkDerivation rec {
|
let ccache = stdenv.mkDerivation rec {
|
||||||
name = "ccache-${version}";
|
name = "ccache-${version}";
|
||||||
version = "3.4";
|
version = "3.4.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
sha256 = "0sfisvjs2iham29flxgmnfg7kzqz66bhk6q0qcwbdv1n569say5j";
|
sha256 = "1pppi4jbkkj641cdynmc35jaj40jjicw7gj75ran5qs5886jcblc";
|
||||||
url = "mirror://samba/ccache/${name}.tar.xz";
|
url = "mirror://samba/ccache/${name}.tar.xz";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ perl gcc ];
|
nativeBuildInputs = [ perl ];
|
||||||
|
|
||||||
buildInputs = [ zlib ];
|
buildInputs = [ zlib ];
|
||||||
|
|
||||||
|
outputs = [ "out" "man" ];
|
||||||
|
|
||||||
# non to be fail on filesystems with unconventional blocksizes (zfs on Hydra?)
|
# non to be fail on filesystems with unconventional blocksizes (zfs on Hydra?)
|
||||||
patches = [
|
patches = [
|
||||||
./fix-debug-prefix-map-suite.patch
|
./fix-debug-prefix-map-suite.patch
|
||||||
|
Loading…
x
Reference in New Issue
Block a user