From c16628ea6e7a37cd324a40637074311473d9f3b2 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Tue, 1 Dec 2020 15:15:52 +0100 Subject: gnu: Add glyphs. * gnu/packages/lisp-xyz.scm (cl-glyphs, ecl-glyphs, sbcl-glyphs): New variables. --- gnu/packages/lisp-xyz.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index d62ecb6b18..2bfd1e75f0 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -12303,3 +12303,35 @@ even by adding additional statistical @code{compute}ations. ") (define-public ecl-trivial-benchmark (sbcl-package->ecl-package sbcl-trivial-benchmark)) + +(define-public sbcl-glyphs + (let ((commit "1ff5714e8c1dca327bc604dfe3e3d1f4b7755373")) + (package + (name "sbcl-glyphs") + (version (git-version "0.0.0" "1" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ahungry/glyphs/") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17kai1anbkk5dj5sbrsin2fc019cmcbglb900db60v38myj0y0wf")))) + (build-system asdf-build-system/sbcl) + (inputs + `(("cl-ppcre" ,sbcl-cl-ppcre) + ("parenscript" ,sbcl-parenscript) + ("named-readtables" ,sbcl-named-readtables))) + (home-page "https://github.com/ahungry/glyphs/") + (synopsis "Reduce Common Lisp verbosity") + (description + "This library is a little experiment in reducing verbosity in Common +Lisp, inspired by BODOL (@url{https://github.com/bodil/BODOL}).") + (license license:gpl3)))) + +(define-public cl-glyphs + (sbcl-package->cl-source-package sbcl-glyphs)) + +(define-public ecl-glyphs + (sbcl-package->ecl-package sbcl-glyphs)) -- cgit v1.2.3
path: root/tests/guix-package.sh
AgeCommit message (Expand)Author
2020-10-02guix package: Re-apply package transformation when upgrading....Ludovic Courtès
2020-10-02tests: Adjust to recent changes to the 'emacs' package....Ludovic Courtès
2020-09-28tests: Simplify shell exit status negation;...Eric Bavier
2020-03-25tests: Adjust to 'show-manifest-transaction' changes....Ludovic Courtès
2019-11-29tests: Fix race condition in profile locking test....Ludovic Courtès
2019-11-22package: Allow multiple '--manifest' options....Ludovic Courtès
2019-11-08guix: package: lock profiles when processing them....Julien Lepiller
2019-09-26guix package: Add '--list-profiles'....Ludovic Courtès
2019-09-18guix package: "guix package -f FILE" ensures FILE returns a package....Ludovic Courtès
2019-05-26discovery: 'all-modules' returns modules in path order....Robert Vollmert
2019-05-13tests: Fix guix-package.sh....Maxim Cournoyer
2019-05-09ui: Make package outputs searchable....Chris Marusich
2019-02-07profiles: Raise an error for unmatched patterns....Ludovic Courtès
2018-11-11guix package: '--show' errors when asked for a non-existent package....Ludovic Courtès
2018-09-21profiles: 'packages->manifest' now accepts inferior packages....Ludovic Courtès
2018-07-13guix package: Use relative symlinks to generations....Ludovic Courtès
2018-06-06tests: Adjust 'guix package' test to "python2" name....Ludovic Courtès
2018-03-31guix package: Add '--allow-collisions'....Ludovic Courtès
2018-02-27guix package: '--search' no longer shows superseded packages....Ludovic Courtès
2017-11-11tests: Adjust to new unbound-variable error message....Ludovic Courtès