From ac33ccf7794eba28746111cfed5d89419857daf6 Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Mon, 19 Jun 2023 13:30:09 +0100 Subject: [PATCH] mono: add licensing details --- pkgs/development/compilers/mono/generic.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/mono/generic.nix b/pkgs/development/compilers/mono/generic.nix index ddd77509c766..26e8653209fa 100644 --- a/pkgs/development/compilers/mono/generic.nix +++ b/pkgs/development/compilers/mono/generic.nix @@ -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 + ]; }; }