2020-11-20 12:58:33 -08:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, substituteAll
|
|
|
|
, binutils
|
|
|
|
, asciidoc
|
|
|
|
, cmake
|
|
|
|
, perl
|
|
|
|
, zstd
|
|
|
|
, xcodebuild
|
|
|
|
, makeWrapper
|
|
|
|
}:
|
2008-02-12 05:32:37 -08:00
|
|
|
|
2016-01-25 11:08:34 -08:00
|
|
|
let ccache = stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "ccache";
|
2021-02-01 22:58:11 -08:00
|
|
|
version = "4.2";
|
2015-05-11 05:56:41 -07:00
|
|
|
|
2020-05-28 06:54:44 -07:00
|
|
|
src = fetchFromGitHub {
|
2020-11-20 12:58:33 -08:00
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2020-05-28 06:54:44 -07:00
|
|
|
rev = "v${version}";
|
2021-02-01 22:58:11 -08:00
|
|
|
sha256 = "1lr9804xyzbs72f9jbbzy1fjqxwrwpb4rp431wqialvms4251d8f";
|
2012-01-20 16:25:30 -08:00
|
|
|
};
|
|
|
|
|
2020-11-22 20:16:23 -08:00
|
|
|
patches = lib.optional stdenv.isDarwin (substituteAll {
|
2020-11-20 12:58:33 -08:00
|
|
|
src = ./force-objdump-on-darwin.patch;
|
|
|
|
objdump = "${binutils.bintools}/bin/objdump";
|
|
|
|
});
|
2018-02-27 23:07:54 -08:00
|
|
|
|
2020-11-20 12:58:33 -08:00
|
|
|
nativeBuildInputs = [ asciidoc cmake perl ];
|
|
|
|
|
|
|
|
buildInputs = [ zstd ];
|
2015-07-01 08:43:04 -07:00
|
|
|
|
2018-02-28 05:51:05 -08:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2020-11-20 12:58:33 -08:00
|
|
|
doCheck = true;
|
|
|
|
checkInputs = lib.optional stdenv.isDarwin xcodebuild;
|
|
|
|
checkPhase = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
ctest --output-on-failure ${lib.optionalString stdenv.isDarwin ''
|
|
|
|
-E '^(test.nocpp2|test.modules)$'
|
|
|
|
''}
|
|
|
|
'';
|
2012-01-20 17:29:06 -08:00
|
|
|
|
2019-07-15 05:14:19 -07:00
|
|
|
passthru = {
|
2012-01-20 16:25:30 -08:00
|
|
|
# A derivation that provides gcc and g++ commands, but that
|
|
|
|
# will end up calling ccache for the given cacheDir
|
2019-08-13 14:52:01 -07:00
|
|
|
links = {unwrappedCC, extraConfig}: stdenv.mkDerivation {
|
2016-05-10 21:45:41 -07:00
|
|
|
name = "ccache-links";
|
|
|
|
passthru = {
|
2016-09-18 11:54:12 -07:00
|
|
|
isClang = unwrappedCC.isClang or false;
|
|
|
|
isGNU = unwrappedCC.isGNU or false;
|
2016-05-10 21:45:41 -07:00
|
|
|
};
|
2016-09-18 11:54:12 -07:00
|
|
|
inherit (unwrappedCC) lib;
|
2017-08-10 03:13:17 -07:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2016-05-10 21:45:41 -07:00
|
|
|
buildCommand = ''
|
2012-01-20 16:25:30 -08:00
|
|
|
mkdir -p $out/bin
|
2016-09-18 11:54:12 -07:00
|
|
|
|
|
|
|
wrap() {
|
|
|
|
local cname="$1"
|
|
|
|
if [ -x "${unwrappedCC}/bin/$cname" ]; then
|
2017-08-10 03:13:17 -07:00
|
|
|
makeWrapper ${ccache}/bin/ccache $out/bin/$cname \
|
2021-01-23 04:26:19 -08:00
|
|
|
--run ${lib.escapeShellArg extraConfig} \
|
2017-08-10 03:13:17 -07:00
|
|
|
--add-flags ${unwrappedCC}/bin/$cname
|
2016-09-18 11:54:12 -07:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
wrap cc
|
|
|
|
wrap c++
|
|
|
|
wrap gcc
|
|
|
|
wrap g++
|
|
|
|
wrap clang
|
|
|
|
wrap clang++
|
|
|
|
|
|
|
|
for executable in $(ls ${unwrappedCC}/bin); do
|
2015-07-29 02:03:39 -07:00
|
|
|
if [ ! -x "$out/bin/$executable" ]; then
|
2016-09-18 11:54:12 -07:00
|
|
|
ln -s ${unwrappedCC}/bin/$executable $out/bin/$executable
|
2015-07-29 02:03:39 -07:00
|
|
|
fi
|
|
|
|
done
|
2016-09-18 11:54:12 -07:00
|
|
|
for file in $(ls ${unwrappedCC} | grep -vw bin); do
|
|
|
|
ln -s ${unwrappedCC}/$file $out/$file
|
2015-12-08 21:43:38 -08:00
|
|
|
done
|
2016-05-10 21:45:41 -07:00
|
|
|
'';
|
|
|
|
};
|
2008-02-12 05:32:37 -08:00
|
|
|
};
|
|
|
|
|
2021-01-23 04:26:19 -08:00
|
|
|
meta = with lib; {
|
2013-10-05 07:22:46 -07:00
|
|
|
description = "Compiler cache for fast recompilation of C/C++ code";
|
2020-11-20 12:58:33 -08:00
|
|
|
homepage = "https://ccache.dev";
|
2020-05-28 06:54:44 -07:00
|
|
|
downloadPage = "https://ccache.dev/download.html";
|
2015-05-28 10:20:29 -07:00
|
|
|
license = licenses.gpl3Plus;
|
2020-11-20 12:58:33 -08:00
|
|
|
maintainers = with maintainers; [ metadark r-burns ];
|
2016-08-30 17:13:27 -07:00
|
|
|
platforms = platforms.unix;
|
2008-02-12 05:32:37 -08:00
|
|
|
};
|
2012-01-20 16:25:30 -08:00
|
|
|
};
|
2016-01-25 11:08:34 -08:00
|
|
|
in ccache
|