This commit is contained in:
Daniel Ziltener 2024-01-18 20:13:43 +01:00
parent 943dee29c3
commit e748dcd0b3
Signed by: zilti
GPG Key ID: B38976E82C9DAE42
2 changed files with 8 additions and 4 deletions

View File

@ -531,7 +531,7 @@ language standard, and includes many enhancements and extensions.")
(synopsis "Chicken bindings to the ICU unicode library")
(home-page "https://wiki.call-cc.org/eggref/5/icu")
(description "Chicken bindings to the ICU unicode library")
(license #f)))
(license license:unicode)))
(define-public
chicken-simple-timer
@ -2163,7 +2163,7 @@ language standard, and includes many enhancements and extensions.")
(home-page "https://wiki.call-cc.org/eggref/5/genann")
(description
"Chicken bindings to genann - a simple neural network library in ANSI C")
(license #f)))
(license license:zlib)))
(define-public
chicken-fancypants
@ -10728,7 +10728,7 @@ language standard, and includes many enhancements and extensions.")
(synopsis "GTK-server binding")
(home-page "https://wiki.call-cc.org/eggref/5/gtk-server")
(description "GTK-server binding")
(license #f)))
(license license:gpl3)))
(define-public
chicken-svnwiki-sxml

View File

@ -1,6 +1,7 @@
;; -*- geiser-scheme-implementation: chicken; mode: scheme; -*-
(import (rss)
(import (http-client)
(rss)
(chicken file)
(chicken format)
(chicken io)
@ -24,6 +25,7 @@
(GPL-2 . license:gpl2)
(GPLv2 . license:gpl2)
(GPL-3 . license:gpl3)
(GPL3 . license:gpl3)
(GPLv3 . license:gpl3)
(GPL-3.0 . license:gpl3)
(ISC . license:isc)
@ -37,6 +39,8 @@
(MIT . license:expat)
(OpenLDAP . license:openldap2.8)
(SRFI . license:bsd-1)
(Unicode . license:unicode)
(Zlib . license:zlib)
(zlib . license:zlib)
(ZLIB-Acknowledgement . license:zlib)
(public-domain . license:public-domain)