da9e4402ee
svn path=/nixpkgs/trunk/; revision=22322
24 lines
644 B
Nix
24 lines
644 B
Nix
{stdenv, fetchurl, bison, pkgconfig, glib, gettext, perl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mono-2.6.4";
|
|
src = fetchurl {
|
|
url = http://ftp.novell.com/pub/mono/sources/mono/mono-2.6.4.tar.bz2;
|
|
sha256 = "08krrl9zdigzxxa10c9scy518301l20xmw6dc2w8s0rvrhxryny0";
|
|
};
|
|
|
|
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 ./
|
|
";
|
|
}
|