(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"))