Skip to content

Commit

Permalink
mono: add licensing details
Browse files Browse the repository at this point in the history
  • Loading branch information
06kellyjac committed Jun 19, 2023
1 parent 5a69571 commit ac33ccf
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pkgs/development/compilers/mono/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,15 @@ stdenv.mkDerivation rec {
description = "Cross platform, open source .NET development framework";
platforms = with platforms; darwin ++ linux;
maintainers = with maintainers; [ thoughtpolice obadz vrthra ];
license = licenses.free; # Combination of LGPL/X11/GPL ?
license = with licenses; [
/* runtime, compilers, tools and most class libraries licensed */ mit
/* runtime includes some code licensed */ bsd3
/* mcs/class/I18N/mklist.sh marked GPLv2 and others just GPL */ gpl2Only
/* RabbitMQ.Client class libraries dual licensed */ mpl20 asl20
/* mcs/class/System.Core/System/TimeZoneInfo.Android.cs */ asl20
/* some documentation */ mspl
# https://www.mono-project.com/docs/faq/licensing/
# https://github.com/mono/mono/blob/main/LICENSE
];
};
}

0 comments on commit ac33ccf

Please sign in to comment.