Added the latest Mono release

svn path=/nixpkgs/trunk/; revision=2276
This commit is contained in:
Martin Bravenboer 2005-02-22 20:08:24 +00:00
parent fa88e75c45
commit 5ab3aa73c4

View file

@ -0,0 +1,11 @@
{stdenv, fetchurl, bison, pkgconfig, glib}:
stdenv.mkDerivation {
name = "mono-1.1.4";
src = fetchurl {
url = http://www.go-mono.com/archive/1.1.4/mono-1.1.4.tar.gz;
md5 = "66755e5f201e912cecdd19807ba62487";
};
buildInputs = [bison pkgconfig glib];
}