Skip to content

Commit

Permalink
Merge pull request #146392 from 06kellyjac/mono_license
Browse files Browse the repository at this point in the history
mono: add licensing details
  • Loading branch information
drupol authored Jun 19, 2023
2 parents 2478945 + ac33ccf commit 5938a09
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
];
};
}

2 comments on commit 5938a09

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@drupol, you pushed a commit directly to master/release branch
instead of going through a Pull Request.

That's highly discouraged beyond the few exceptions listed
on #118661

@drupol
Copy link
Contributor Author

@drupol drupol commented on 5938a09 Jun 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, I went through a PR ! I would never commit to master directly.

Please sign in to comment.