me
/
guix
Archived
1
0
Fork 0

gnu: Add cl-i18n.

* gnu/packages/lisp-xyz.scm (cl-i18n, ecl-cl-i18n, sbcl-cl-i18n): New
  variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
master
cage 2021-03-03 16:22:58 +01:00 committed by Guillaume Le Vaillant
parent 3c1cc4992b
commit 88d822c5f1
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 33 additions and 0 deletions

View File

@ -14926,3 +14926,36 @@ dynamically.")
(define-public cl-sxql-composer
(sbcl-package->cl-source-package sbcl-sxql-composer))
(define-public sbcl-cl-i18n
(let ((commit "fa0aa5bef8dfbdf2d72f7cc9f49e848ccbb567aa")
(revision "1"))
(package
(name "sbcl-cl-i18n")
(version (git-version "0.5.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://notabug.org/cage/cl-i18n")
(commit commit)))
(file-name (git-file-name "cl-i18n" version))
(sha256
(base32 "1hpsdbb3hd79bzbrnbqgk2j3f0ispxvk91snp08fm2z3f1sds5as"))))
(build-system asdf-build-system/sbcl)
(inputs
`(("alexandria" ,sbcl-alexandria)
("babel" ,sbcl-babel)
("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)))
(synopsis "Internationalisation framework for Common Lisp")
(description
"This is a Gettext-style internationalisation framework for Common
Lisp.")
(home-page "https://notabug.org/cage/cl-i18n")
(license license:llgpl))))
(define-public ecl-cl-i18n
(sbcl-package->ecl-package sbcl-cl-i18n))
(define-public cl-i18n
(sbcl-package->cl-source-package sbcl-cl-i18n))