PLUS
lib.licenses.PLUS
Docs pulled from | This Revision | 31 minutes ago
Nixpkgs manual
Create a licenses which can be upgraded to any later version of itself,
eqivialent of spdx + modifier
Example
PLUS lib.licenses.eupl11
=> { licenseType = "plus"; operator = "+"; license = lib.licenses.eupl11; };
Type
PLUS :: AttrSet -> AttrSet
Arguments
- [license] License to wich apply an exception
Noogle detected
Implementation
The following is the current implementation of this function.
PLUS = license: {
licenseType = "plus";
operator = "+";
inherit license;
};