summary refs log tree commit diff
path: root/pkgs/development/compilers/mono/default.nix
blob: fbbaf72fe7d94989b462ea94c0509dc32680acc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{stdenv, fetchurl, bison, pkgconfig, glib, gettext, perl}:

stdenv.mkDerivation {
  name = "mono-2.4.2.1";
  src = fetchurl {
    url = http://ftp.novell.com/pub/mono/sources/mono/mono-2.4.2.1.tar.bz2;
    sha256 = "0cbg29fz5xnyjmznwzsmaxrr0cxqisyxk7jx7m56p3zzr379f0f5";
  };

  buildInputs = [bison pkgconfig glib gettext perl];
  propagatedBuildInputs = [glib];

  NIX_LDFLAGS = "-lgcc_s" ;

  # 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;

  preBuild = "
    makeFlagsArray=(INSTALL=`type -tp install`)
    patchShebangs ./
  ";
}