2012-01-04 14:55:54 +01:00
|
|
|
{stdenv, fetchurl, bison, pkgconfig, glib, gettext, perl, libgdiplus}:
|
2005-02-22 21:08:24 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-01-04 09:14:07 +01:00
|
|
|
name = "mono-2.10.8.1";
|
2005-02-22 21:08:24 +01:00
|
|
|
src = fetchurl {
|
2012-01-04 09:14:07 +01:00
|
|
|
url = http://download.mono-project.com/sources/mono/mono-2.10.8.1.tar.gz;
|
|
|
|
sha256 = "0h4hdj99qg0nsg5260izwaybs59wysf7y399kffhg43fidpndz0x";
|
2005-02-22 21:08:24 +01:00
|
|
|
};
|
|
|
|
|
2012-01-04 14:55:54 +01:00
|
|
|
buildInputs = [bison pkgconfig glib gettext perl libgdiplus];
|
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;
|
|
|
|
|
2012-01-04 22:18:50 +01:00
|
|
|
# In fact I think this line does not help at all to what I
|
|
|
|
# wanted to achieve: have mono to find libgdiplus automatically
|
2012-01-04 14:55:54 +01:00
|
|
|
configureFlags = "--with-libgdiplus=${libgdiplus}/lib/libgdiplus.so";
|
|
|
|
|
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
|
|
|
";
|
2012-01-04 22:18:50 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://mono-project.com/;
|
|
|
|
description = "Cross platform, open source .NET development framework";
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
license = "free"; # Combination of LGPL/X11/GPL ?
|
|
|
|
};
|
2005-02-22 21:08:24 +01:00
|
|
|
}
|