81 lines
2.2 KiB
Nix
Raw Normal View History

2018-02-28 10:07:54 +03:00
{ stdenv, fetchurl, fetchpatch, runCommand, perl, gcc, zlib, makeWrapper }:
let ccache = stdenv.mkDerivation rec {
name = "ccache-${version}";
2018-02-28 10:07:54 +03:00
version = "3.4";
src = fetchurl {
2018-02-28 10:07:54 +03:00
sha256 = "0sfisvjs2iham29flxgmnfg7kzqz66bhk6q0qcwbdv1n569say5j";
url = "mirror://samba/ccache/${name}.tar.xz";
};
2018-02-28 10:07:54 +03:00
nativeBuildInputs = [ perl gcc ];
buildInputs = [ zlib ];
2017-07-01 18:42:19 +01:00
# non to be fail on filesystems with unconventional blocksizes (zfs on Hydra?)
2018-02-28 10:07:54 +03:00
patches = [
./fix-debug-prefix-map-suite.patch
./skip-fs-dependent-test.patch
];
2017-07-01 18:42:19 +01:00
2015-08-25 05:03:05 +02:00
postPatch = ''
substituteInPlace Makefile.in --replace 'objs) $(extra_libs)' 'objs)'
'';
2016-08-30 20:13:27 -04:00
doCheck = !stdenv.isDarwin;
2016-08-30 21:55:43 -04:00
passthru = let
unwrappedCC = stdenv.cc.cc;
2016-08-30 21:55:43 -04:00
in {
# A derivation that provides gcc and g++ commands, but that
# will end up calling ccache for the given cacheDir
links = extraConfig: stdenv.mkDerivation rec {
name = "ccache-links";
passthru = {
isClang = unwrappedCC.isClang or false;
isGNU = unwrappedCC.isGNU or false;
};
inherit (unwrappedCC) lib;
nativeBuildInputs = [ makeWrapper ];
buildCommand = ''
mkdir -p $out/bin
wrap() {
local cname="$1"
if [ -x "${unwrappedCC}/bin/$cname" ]; then
makeWrapper ${ccache}/bin/ccache $out/bin/$cname \
--run ${stdenv.lib.escapeShellArg extraConfig} \
--add-flags ${unwrappedCC}/bin/$cname
fi
}
wrap cc
wrap c++
wrap gcc
wrap g++
wrap clang
wrap clang++
for executable in $(ls ${unwrappedCC}/bin); do
if [ ! -x "$out/bin/$executable" ]; then
ln -s ${unwrappedCC}/bin/$executable $out/bin/$executable
fi
done
for file in $(ls ${unwrappedCC} | grep -vw bin); do
ln -s ${unwrappedCC}/$file $out/$file
done
'';
};
};
2015-01-26 04:41:30 +01:00
meta = with stdenv.lib; {
description = "Compiler cache for fast recompilation of C/C++ code";
homepage = http://ccache.samba.org/;
downloadPage = https://ccache.samba.org/download.html;
license = licenses.gpl3Plus;
2016-08-30 20:13:27 -04:00
platforms = platforms.unix;
};
};
in ccache