mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Add meta for mono.
svn path=/nixpkgs/trunk/; revision=31297
This commit is contained in:
parent
ca73b1fb33
commit
4b4022a4e0
@ -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 ?
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user