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