Add meta for mono.

svn path=/nixpkgs/trunk/; revision=31297
This commit is contained in:
Lluís Batlle i Rossell 2012-01-04 21:18:50 +00:00
parent ca73b1fb33
commit 4b4022a4e0

View File

@ -15,6 +15,8 @@ stdenv.mkDerivation {
# To overcome the bug https://bugzilla.novell.com/show_bug.cgi?id=644723
dontDisableStatic = true;
# In fact I think this line does not help at all to what I
# wanted to achieve: have mono to find libgdiplus automatically
configureFlags = "--with-libgdiplus=${libgdiplus}/lib/libgdiplus.so";
# Attempt to fix this error when running "mcs --version":
@ -27,4 +29,12 @@ stdenv.mkDerivation {
makeFlagsArray=(INSTALL=`type -tp install`)
patchShebangs ./
";
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 ?
};
}