1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
{
lib,
stdenv,
fetchFromGitHub,
popt,
avahi,
pkg-config,
python3,
gtk3,
runCommand,
gcc,
autoconf,
automake,
which,
procps,
libiberty_static,
runtimeShell,
gitUpdater,
sysconfDir ? "", # set this parameter to override the default value $out/etc
static ? false,
}:
let
pname = "distcc";
version = "3.4";
distcc = stdenv.mkDerivation {
inherit pname version;
src = fetchFromGitHub {
owner = "distcc";
repo = "distcc";
tag = "v${version}";
hash = "sha256-S3EHJ8s+bYWBmOfKP5ErNSa+UIalIK82MgKhWvPnwFo=";
};
nativeBuildInputs = [
pkg-config
autoconf
automake
which
(python3.withPackages (p: [ p.setuptools ]))
];
buildInputs = [
popt
avahi
gtk3
procps
libiberty_static
];
preConfigure = ''
export CPATH=$(ls -d ${gcc.cc}/lib/gcc/*/${gcc.cc.version}/plugin/include)
configureFlagsArray=( CFLAGS="-O2 -fno-strict-aliasing"
CXXFLAGS="-O2 -fno-strict-aliasing"
--mandir=$out/share/man
${lib.optionalString (sysconfDir != "") "--sysconfdir=${sysconfDir}"}
${lib.optionalString static "LDFLAGS=-static"}
${lib.withFeature (static == true || popt == null) "included-popt"}
${lib.withFeature (avahi != null) "avahi"}
${lib.withFeature (gtk3 != null) "gtk"}
--without-gnome
--enable-rfc2553
--disable-Werror # a must on gcc 4.6
)
installFlags="sysconfdir=$out/etc";
./autogen.sh
'';
# The test suite fails because it uses hard-coded paths, i.e. /usr/bin/gcc.
doCheck = false;
passthru = {
# A derivation that provides gcc and g++ commands, but that
# will end up calling distcc for the given cacheDir
#
# extraConfig is meant to be sh lines exporting environment
# variables like DISTCC_HOSTS, DISTCC_DIR, ...
links =
extraConfig:
(runCommand "distcc-links" { passthru.gcc = gcc.cc; } ''
mkdir -p $out/bin
if [ -x "${gcc.cc}/bin/gcc" ]; then
cat > $out/bin/gcc << EOF
#!${runtimeShell}
${extraConfig}
exec ${distcc}/bin/distcc gcc "\$@"
EOF
chmod +x $out/bin/gcc
fi
if [ -x "${gcc.cc}/bin/g++" ]; then
cat > $out/bin/g++ << EOF
#!${runtimeShell}
${extraConfig}
exec ${distcc}/bin/distcc g++ "\$@"
EOF
chmod +x $out/bin/g++
fi
'');
updateScript = gitUpdater {
rev-prefix = "v";
};
};
meta = {
description = "Fast, free distributed C/C++ compiler";
homepage = "http://distcc.org";
license = lib.licenses.gpl2Only;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = with lib.maintainers; [ pascalj ];
};
};
in
distcc
|