me
/
guix
Archived
1
0
Fork 0

gnu: Add trivial-package-local-nicknames.

* gnu/packages/lisp-xyz.scm (cl-trivial-package-local-nicknames,
  sbcl-trivial-package-local-nicknames): New variables.
master
Pierre Neidhardt 2020-03-27 18:39:28 +01:00
parent bc3fda5d2b
commit eb5341c235
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 25 additions and 0 deletions

View File

@ -11250,3 +11250,28 @@ If features:
(define-public cl-sycamore
(sbcl-package->cl-source-package sbcl-sycamore))
(define-public sbcl-trivial-package-local-nicknames
(package
(name "sbcl-trivial-package-local-nicknames")
(version "0.2")
(home-page "https://github.com/phoe/trivial-package-local-nicknames")
(source
(origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit "16b7ad4c2b120f50da65154191f468ea5598460e")))
(file-name (git-file-name name version))
(sha256
(base32 "18qc27xkjzdcqrilpk3pm7djldwq5rm3ggd5h9cr8hqcd54i2fqg"))))
(build-system asdf-build-system/sbcl)
(synopsis "Common Lisp compatibility library for package local nicknames")
(description
"This library is a portable compatibility layer around package local nicknames (PLN).
This was done so there is a portability library for the PLN API not included
in DEFPACKAGE.")
(license license:unlicense)))
(define-public cl-trivial-package-local-nicknames
(sbcl-package->cl-source-package sbcl-trivial-package-local-nicknames))