summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-01-06 01:07:45 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-01-06 01:07:45 +0000
commit900c6e18cd2e71fcd3c5aad75f63c949f12d1c39 (patch)
tree3e242107fb40df46df8667c92ea209e91f95cbf4 /pkgs/development/compilers
parentc96b647e300d657f081528d01d1debbeb63da74a (diff)
parentdc9bf79b545d97216739e37aa2e02025d2f80019 (diff)
downloadnixpkgs-900c6e18cd2e71fcd3c5aad75f63c949f12d1c39.tar
nixpkgs-900c6e18cd2e71fcd3c5aad75f63c949f12d1c39.tar.gz
nixpkgs-900c6e18cd2e71fcd3c5aad75f63c949f12d1c39.tar.bz2
nixpkgs-900c6e18cd2e71fcd3c5aad75f63c949f12d1c39.tar.lz
nixpkgs-900c6e18cd2e71fcd3c5aad75f63c949f12d1c39.tar.xz
nixpkgs-900c6e18cd2e71fcd3c5aad75f63c949f12d1c39.tar.zst
nixpkgs-900c6e18cd2e71fcd3c5aad75f63c949f12d1c39.zip
svn merge ^/nixpkgs/trunk
Conflicts: openssl, libplist

svn path=/nixpkgs/branches/stdenv-updates/; revision=31337
Diffstat (limited to 'pkgs/development/compilers')
-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 ?
+  };
 }