2016-08-31 03:55:43 +02:00
|
|
|
{ stdenv, fetchurl, fetchpatch, runCommand, zlib }:
|
2008-02-12 14:32:37 +01:00
|
|
|
|
2016-01-25 20:08:34 +01:00
|
|
|
let ccache = stdenv.mkDerivation rec {
|
2015-05-11 14:56:41 +02:00
|
|
|
name = "ccache-${version}";
|
2016-04-17 18:24:11 +02:00
|
|
|
version = "3.2.5";
|
2015-05-11 14:56:41 +02:00
|
|
|
|
2008-02-12 14:32:37 +01:00
|
|
|
src = fetchurl {
|
2016-04-17 18:24:11 +02:00
|
|
|
sha256 = "11db1g109g0g5si0s50yd99ja5f8j4asxb081clvx78r9d9i2w0i";
|
2015-05-11 14:56:41 +02:00
|
|
|
url = "mirror://samba/ccache/${name}.tar.xz";
|
2012-01-21 01:25:30 +01:00
|
|
|
};
|
|
|
|
|
2015-07-01 17:43:04 +02:00
|
|
|
buildInputs = [ zlib ];
|
|
|
|
|
2015-08-25 05:03:05 +02:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.in --replace 'objs) $(extra_libs)' 'objs)'
|
|
|
|
'';
|
|
|
|
|
2016-08-31 02:13:27 +02:00
|
|
|
doCheck = !stdenv.isDarwin;
|
2012-01-21 02:29:06 +01:00
|
|
|
|
2016-08-31 03:55:43 +02:00
|
|
|
passthru = let
|
2016-09-18 20:54:12 +02:00
|
|
|
unwrappedCC = stdenv.cc.cc;
|
2016-08-31 03:55:43 +02:00
|
|
|
in {
|
2012-01-21 01:25:30 +01:00
|
|
|
# A derivation that provides gcc and g++ commands, but that
|
|
|
|
# will end up calling ccache for the given cacheDir
|
2016-05-11 06:45:41 +02:00
|
|
|
links = extraConfig: stdenv.mkDerivation rec {
|
|
|
|
name = "ccache-links";
|
|
|
|
passthru = {
|
2016-09-18 20:54:12 +02:00
|
|
|
isClang = unwrappedCC.isClang or false;
|
|
|
|
isGNU = unwrappedCC.isGNU or false;
|
2016-05-11 06:45:41 +02:00
|
|
|
};
|
2016-09-18 20:54:12 +02:00
|
|
|
inherit (unwrappedCC) lib;
|
2016-05-11 06:45:41 +02:00
|
|
|
buildCommand = ''
|
2012-01-21 01:25:30 +01:00
|
|
|
mkdir -p $out/bin
|
2016-09-18 20:54:12 +02:00
|
|
|
|
|
|
|
wrap() {
|
|
|
|
local cname="$1"
|
|
|
|
if [ -x "${unwrappedCC}/bin/$cname" ]; then
|
|
|
|
cat > $out/bin/$cname << EOF
|
|
|
|
#!/bin/sh
|
|
|
|
${extraConfig}
|
|
|
|
exec ${ccache}/bin/ccache ${unwrappedCC}/bin/$cname "\$@"
|
2012-01-21 01:25:30 +01:00
|
|
|
EOF
|
2016-09-18 20:54:12 +02:00
|
|
|
chmod +x $out/bin/$cname
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
wrap cc
|
|
|
|
wrap c++
|
|
|
|
wrap gcc
|
|
|
|
wrap g++
|
|
|
|
wrap clang
|
|
|
|
wrap clang++
|
|
|
|
|
|
|
|
for executable in $(ls ${unwrappedCC}/bin); do
|
2015-07-29 11:03:39 +02:00
|
|
|
if [ ! -x "$out/bin/$executable" ]; then
|
2016-09-18 20:54:12 +02:00
|
|
|
ln -s ${unwrappedCC}/bin/$executable $out/bin/$executable
|
2015-07-29 11:03:39 +02:00
|
|
|
fi
|
|
|
|
done
|
2016-09-18 20:54:12 +02:00
|
|
|
for file in $(ls ${unwrappedCC} | grep -vw bin); do
|
|
|
|
ln -s ${unwrappedCC}/$file $out/$file
|
2015-12-09 06:43:38 +01:00
|
|
|
done
|
2016-05-11 06:45:41 +02:00
|
|
|
'';
|
|
|
|
};
|
2008-02-12 14:32:37 +01:00
|
|
|
};
|
|
|
|
|
2015-01-26 04:41:30 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-05 16:22:46 +02:00
|
|
|
description = "Compiler cache for fast recompilation of C/C++ code";
|
2008-02-12 14:32:37 +01:00
|
|
|
homepage = http://ccache.samba.org/;
|
2015-05-11 14:56:41 +02:00
|
|
|
downloadPage = https://ccache.samba.org/download.html;
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl3Plus;
|
2015-01-26 04:41:30 +01:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
2016-08-31 02:13:27 +02:00
|
|
|
platforms = platforms.unix;
|
2008-02-12 14:32:37 +01:00
|
|
|
};
|
2012-01-21 01:25:30 +01:00
|
|
|
};
|
2016-01-25 20:08:34 +01:00
|
|
|
in ccache
|