nixpkgs/pkgs/development/tools/misc/ccache/default.nix

73 lines
2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, asciidoc-full, gperf, perl, autoreconfHook, zlib, makeWrapper }:
let ccache = stdenv.mkDerivation rec {
pname = "ccache";
2020-10-17 23:33:44 +02:00
version = "3.7.12";
src = fetchFromGitHub {
owner = "ccache";
repo = "ccache";
rev = "v${version}";
2020-10-17 23:33:44 +02:00
sha256 = "1xnv4g4n1jk1i98sa53k8w6q7hbwbw62svs30lssppysbrv8x3gz";
};
nativeBuildInputs = [ asciidoc-full autoreconfHook gperf perl ];
2018-02-28 08:07:54 +01:00
buildInputs = [ zlib ];
outputs = [ "out" "man" ];
2016-08-31 02:13:27 +02:00
doCheck = !stdenv.isDarwin;
passthru = {
# A derivation that provides gcc and g++ commands, but that
# will end up calling ccache for the given cacheDir
2019-08-13 23:52:01 +02:00
links = {unwrappedCC, extraConfig}: stdenv.mkDerivation {
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 = "https://ccache.dev/";
downloadPage = "https://ccache.dev/download.html";
license = licenses.gpl3Plus;
2016-08-31 02:13:27 +02:00
platforms = platforms.unix;
};
};
in ccache