2013-01-08 21:07:01 +00:00
|
|
|
{ fetchgit, stdenv, autoconf, automake, pkgconfig, m4, curl,
|
2011-10-07 20:01:19 +01:00
|
|
|
mesa, libXmu, libXi, freeglut, libjpeg, libtool, wxGTK,
|
|
|
|
sqlite, gtk, patchelf, libXScrnSaver, libnotify, libX11 }:
|
2011-10-06 21:25:05 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-01-08 21:07:01 +00:00
|
|
|
name = "boinc-7.0.44";
|
2011-10-06 21:25:05 +01:00
|
|
|
|
2013-01-08 21:07:01 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://boinc.berkeley.edu/boinc.git";
|
|
|
|
rev = "7c449b1fb8a681ceb27d6895751b62a2b3adf0f2";
|
|
|
|
sha256 = "0hdramyl9nip3gadp7xiaz8ngyld15i93d8ai1nsd04bmrvdfqia";
|
2011-10-06 21:25:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libtool automake autoconf m4 pkgconfig curl mesa libXmu libXi
|
2011-10-07 20:01:19 +01:00
|
|
|
freeglut libjpeg wxGTK sqlite gtk libXScrnSaver libnotify patchelf libX11 ];
|
2011-10-06 21:25:05 +01:00
|
|
|
|
|
|
|
postConfigure = ''
|
|
|
|
sed -i -e s,/etc,$out/etc, client/scripts/Makefile
|
|
|
|
'';
|
|
|
|
|
2011-10-07 20:01:27 +01:00
|
|
|
NIX_LDFLAGS = "-lX11";
|
|
|
|
|
2011-10-06 21:25:05 +01:00
|
|
|
preConfigure = ''
|
|
|
|
./_autosetup
|
|
|
|
configureFlags="$configureFlags --sysconfdir=$out/etc"
|
|
|
|
'';
|
|
|
|
|
2011-10-07 20:01:19 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
configureFlags = "--disable-server --disable-fast-install";
|
|
|
|
|
|
|
|
postInstall = "
|
|
|
|
# Remove a leading rpath to /tmp/... I don't know how it got there
|
|
|
|
# I could not manage to get rid of that through autotools.
|
|
|
|
for a in $out/bin/*; do
|
|
|
|
RPATH=$(patchelf --print-rpath $a)
|
|
|
|
NEWRPATH=$(echo $RPATH | sed 's/^[^:]*://')
|
|
|
|
patchelf --set-rpath $out/lib:$NEWRPATH $a
|
|
|
|
done
|
|
|
|
";
|
2011-10-06 21:25:05 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Free software for distributed and grid computing";
|
|
|
|
|
|
|
|
homepage = http://boinc.berkeley.edu/;
|
|
|
|
|
|
|
|
license = "LGPLv2+";
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.linux; # arbitrary choice
|
|
|
|
};
|
|
|
|
}
|