0caae36936
svn path=/nixpkgs/trunk/; revision=8619
17 lines
369 B
Nix
17 lines
369 B
Nix
{stdenv, fetchurl, bison, pkgconfig, glib}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mono-1.1.4";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/mono-1.1.4.tar.gz;
|
|
md5 = "66755e5f201e912cecdd19807ba62487";
|
|
};
|
|
|
|
buildInputs = [bison pkgconfig glib];
|
|
propagatedBuildInputs = [glib];
|
|
|
|
preBuild = "
|
|
makeFlagsArray=(INSTALL=`type -tp install`)
|
|
";
|
|
}
|