2012-01-04 13:55:54 +00:00
|
|
|
{stdenv, fetchurl, bison, pkgconfig, glib, gettext, perl, libgdiplus}:
|
2005-02-22 20:08:24 +00:00
|
|
|
|
2013-04-08 09:52:27 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mono-2.11.4";
|
2005-02-22 20:08:24 +00:00
|
|
|
src = fetchurl {
|
2013-04-08 09:52:27 +00:00
|
|
|
url = "http://download.mono-project.com/sources/mono/${name}.tar.bz2";
|
|
|
|
sha256 = "0wv8pnj02mq012sihx2scx0avyw51b5wb976wn7x86zda0vfcsnr";
|
2005-02-22 20:08:24 +00:00
|
|
|
};
|
|
|
|
|
2012-01-04 13:55:54 +00:00
|
|
|
buildInputs = [bison pkgconfig glib gettext perl libgdiplus];
|
2005-02-26 23:45:19 +00:00
|
|
|
propagatedBuildInputs = [glib];
|
2007-04-26 22:28:26 +00:00
|
|
|
|
2009-10-19 11:26:13 +00:00
|
|
|
NIX_LDFLAGS = "-lgcc_s" ;
|
|
|
|
|
2010-11-07 21:25:28 +00:00
|
|
|
# To overcome the bug https://bugzilla.novell.com/show_bug.cgi?id=644723
|
|
|
|
dontDisableStatic = true;
|
|
|
|
|
2012-01-04 21:18:50 +00: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 13:55:54 +00:00
|
|
|
configureFlags = "--with-libgdiplus=${libgdiplus}/lib/libgdiplus.so";
|
|
|
|
|
2010-03-17 13:56:40 +00: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;
|
|
|
|
|
2012-09-02 07:06:14 +00:00
|
|
|
# Parallel building doesn't work, as shows http://hydra.nixos.org/build/2983601
|
|
|
|
enableParallelBuilding = false;
|
2010-11-07 21:25:28 +00:00
|
|
|
|
2007-04-26 22:28:26 +00:00
|
|
|
preBuild = "
|
|
|
|
makeFlagsArray=(INSTALL=`type -tp install`)
|
2009-07-10 11:49:32 +00:00
|
|
|
patchShebangs ./
|
2007-04-26 22:28:26 +00:00
|
|
|
";
|
2012-01-04 21:18:50 +00: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 20:08:24 +00:00
|
|
|
}
|