2009-07-10 13:49:32 +02:00
|
|
|
{stdenv, fetchurl, bison, pkgconfig, glib, gettext, perl}:
|
2005-02-22 21:08:24 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-11-07 22:25:28 +01:00
|
|
|
name = "mono-2.8";
|
2005-02-22 21:08:24 +01:00
|
|
|
src = fetchurl {
|
2010-11-07 22:25:28 +01:00
|
|
|
url = http://ftp.novell.com/pub/mono/sources/mono/mono-2.8.tar.bz2;
|
|
|
|
sha256 = "04bivxg90mmihkp72sjshl4ijbjcbl9f6hdgm476zy794g5rwd78";
|
2005-02-22 21:08:24 +01:00
|
|
|
};
|
|
|
|
|
2009-07-10 13:49:32 +02:00
|
|
|
buildInputs = [bison pkgconfig glib gettext perl];
|
2005-02-27 00:45:19 +01:00
|
|
|
propagatedBuildInputs = [glib];
|
2007-04-27 00:28:26 +02:00
|
|
|
|
2009-10-19 13:26:13 +02:00
|
|
|
NIX_LDFLAGS = "-lgcc_s" ;
|
|
|
|
|
2010-11-07 22:25:28 +01:00
|
|
|
# To overcome the bug https://bugzilla.novell.com/show_bug.cgi?id=644723
|
|
|
|
dontDisableStatic = true;
|
|
|
|
|
2010-03-17 14:56:40 +01:00
|
|
|
# Attempt to fix this error when running "mcs --version":
|
|
|
|
# The file /nix/store/xxx-mono-2.4.2.1/lib/mscorlib.dll is an invalid CIL image
|
|
|
|
dontStrip = true;
|
|
|
|
|
2010-11-07 22:25:28 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2007-04-27 00:28:26 +02:00
|
|
|
preBuild = "
|
|
|
|
makeFlagsArray=(INSTALL=`type -tp install`)
|
2009-07-10 13:49:32 +02:00
|
|
|
patchShebangs ./
|
2007-04-27 00:28:26 +02:00
|
|
|
";
|
2005-02-22 21:08:24 +01:00
|
|
|
}
|