16 lines
410 B
Scheme
16 lines
410 B
Scheme
|
; This file defines how to the licenses from snow-fort map to guix ones
|
||
|
; For Guix licenses see: https://git.savannah.gnu.org/cgit/guix.git/tree/guix/licenses.scm
|
||
|
|
||
|
(define license-connections
|
||
|
'((bsd non-copyleft)
|
||
|
(BSD non-copyleft)
|
||
|
(MPL-2.0 mpl2.0)
|
||
|
(mit expat)
|
||
|
(MIT expat)
|
||
|
(CC0 cc0)
|
||
|
(ISC isc)
|
||
|
(public-domain public-domain)
|
||
|
(gpl3 gpl3)
|
||
|
(gpl gpl3)
|
||
|
(Expat (MIT) expat)))
|