summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-01-04 21:18:50 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-01-04 21:18:50 +0000
commit4b4022a4e041823c0ec027c3497f7174cf39eee9 (patch)
tree62537d88bd751d764a8dd502a094fb701daf72f6 /pkgs/development
parentca73b1fb3396d9f41bccdc2790e3e1f7f7720ee6 (diff)
downloadnixpkgs-4b4022a4e041823c0ec027c3497f7174cf39eee9.tar
nixpkgs-4b4022a4e041823c0ec027c3497f7174cf39eee9.tar.gz
nixpkgs-4b4022a4e041823c0ec027c3497f7174cf39eee9.tar.bz2
nixpkgs-4b4022a4e041823c0ec027c3497f7174cf39eee9.tar.lz
nixpkgs-4b4022a4e041823c0ec027c3497f7174cf39eee9.tar.xz
nixpkgs-4b4022a4e041823c0ec027c3497f7174cf39eee9.tar.zst
nixpkgs-4b4022a4e041823c0ec027c3497f7174cf39eee9.zip
Add meta for mono.
svn path=/nixpkgs/trunk/; revision=31297
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/compilers/mono/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/development/compilers/mono/default.nix b/pkgs/development/compilers/mono/default.nix
index 8b85400f780..2f257fccc52 100644
--- a/pkgs/development/compilers/mono/default.nix
+++ b/pkgs/development/compilers/mono/default.nix
@@ -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 ?
+  };
 }