2010-01-21 16:40:43 +01:00
|
|
|
{stdenv, fetchurl, popt, avahi, pkgconfig, python, gtk, static ? false}:
|
2009-10-20 13:54:49 +02:00
|
|
|
|
|
|
|
let name = "distcc";
|
|
|
|
version = "3.1";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "${name}-${version}";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://distcc.googlecode.com/files/${name}-${version}.tar.bz2";
|
|
|
|
sha256 = "f55dbafd76bed3ce57e1bbcdab1329227808890d90f4c724fcd2d53f934ddd89";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [popt avahi pkgconfig python gtk];
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
configureFlagsArray=( CFLAGS="-O2 -fno-strict-aliasing"
|
|
|
|
CXXFLAGS="-O2 -fno-strict-aliasing"
|
2010-01-21 16:40:43 +01:00
|
|
|
${if static then "LDFLAGS=-static" else ""}
|
|
|
|
--with${if static == true || popt == null then "" else "out"}-included-popt
|
2009-10-20 13:54:49 +02:00
|
|
|
--with${if avahi != null then "" else "out"}-avahi
|
|
|
|
--with${if gtk != null then "" else "out"}-gtk
|
|
|
|
--without-gnome
|
|
|
|
--enable-rfc2553
|
|
|
|
)
|
|
|
|
'';
|
2010-01-21 16:40:48 +01:00
|
|
|
patches = [ ./20-minute-io-timeout.patch ];
|
2009-10-20 13:54:49 +02:00
|
|
|
|
|
|
|
# The test suite fails because it uses hard-coded paths, i.e. /usr/bin/gcc.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "a fast, free distributed C/C++ compiler";
|
|
|
|
homepage = "http://distcc.org";
|
|
|
|
license = "GPL";
|
|
|
|
};
|
|
|
|
}
|