blob: 76cffb3feeb74392cb357b0b0ac3a2a783649f2f (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
(define-module (rodion licenses)
#:use-module (guix licenses)
#:export (unspecified!
sustainable-use
bsl))
(define license (@@ (guix licenses) license))
(define unspecified! (license "unspecified" "" "License is not specified"))
(define sustainable-use (license "Sustainable Use License 1.0" "https://github.com/n8n-io/n8n/blob/master/LICENSE.md" "Non-free license with commercial use restrictions"))
(define bsl (license "Business Source License" "https://github.com/hashicorp/terraform/blob/main/LICENSE" "Non-free license with commercial userrestrictions"))
|