lib.licenses: add Sustainable Use License (#239455)

This commit is contained in:
Hugh O'Brien 2023-06-25 03:07:49 -04:00 committed by GitHub
parent 307e5e304c
commit 636db898eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 7 deletions

View File

@ -995,6 +995,14 @@ in mkLicense lset) ({
url = "https://github.com/thestk/stk/blob/master/LICENSE";
};
sustainableUse = {
shortName = "sustainable";
fullName = "Sustainable Use License";
url = "https://github.com/n8n-io/n8n/blob/master/LICENSE.md";
free = false;
redistributable = false; # only free to redistribute "for non-commercial purposes"
};
tsl = {
shortName = "TSL";
fullName = "Timescale License Agreegment";

View File

@ -38,12 +38,6 @@ nodePackages.n8n.override {
meta = with lib; {
description = "Free and source-available fair-code licensed workflow automation tool. Easily automate tasks across different services.";
maintainers = with maintainers; [ freezeboy k900 ];
license = {
fullName = "Sustainable Use License";
url = "https://github.com/n8n-io/n8n/blob/master/LICENSE.md";
free = false;
# only free to redistribute "for non-commercial purposes"
redistributable = false;
};
license = licenses.sustainableUse;
};
}