aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/licentia/license.lux
diff options
context:
space:
mode:
authorEduardo Julian2020-12-09 20:42:37 -0400
committerEduardo Julian2020-12-09 20:42:37 -0400
commit893c76ad530ca0e81cd84602543c3114407f4592 (patch)
tree6d14f38c7b9f5b37809615d0dca7545b36405525 /stdlib/source/program/licentia/license.lux
parent8df63aae42c40ac0413ccfacc3b2e8eb72e00a15 (diff)
Added support for "Commons Clause" to Licentia.
Diffstat (limited to '')
-rw-r--r--stdlib/source/program/licentia/license.lux6
1 files changed, 5 insertions, 1 deletions
diff --git a/stdlib/source/program/licentia/license.lux b/stdlib/source/program/licentia/license.lux
index 375ed8c12..c62c8419d 100644
--- a/stdlib/source/program/licentia/license.lux
+++ b/stdlib/source/program/licentia/license.lux
@@ -46,6 +46,9 @@
#url URL
#image (Maybe URL)})
+(type: #export Addendum
+ {#commons-clause? Bit})
+
(type: #export License
{#copyright-holders (List /copyright.Holder)
#identification (Maybe Identification)
@@ -55,4 +58,5 @@
#commercial Commercial
#extension Extension
#black-lists (List Black-List)
- #attribution (Maybe Attribution)})
+ #attribution (Maybe Attribution)
+ #addendum Addendum})