diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2020-07-17 10:33:02 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2020-07-17 15:35:56 +0200 |
commit | 720c83870973749f567c511216f2a60e2c54f497 (patch) | |
tree | 14fff348b0e1d910165d8bdae0e96a433be8febb /gnu/packages/lisp-xyz.scm | |
parent | 49abb68760f4abd881db279e76c45eeeb6b2f243 (diff) | |
download | guix-720c83870973749f567c511216f2a60e2c54f497.tar.gz |
gnu: Add sbcl-persistent.
* gnu/packages/lisp-xyz.scm (sbcl-persistent): New variable.
Diffstat (limited to 'gnu/packages/lisp-xyz.scm')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 6559fb520c..7a3755df8f 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -12801,3 +12801,12 @@ specification}, a toolkit for writing GUIs in Common Lisp.") `()) (arguments '(#:asd-file "Libraries/Drei/cl-automaton/automaton.asd")))) + +(define-public sbcl-persistent + (package + (inherit sbcl-clim-lisp) + (name "sbcl-persistent") + (inputs + `()) + (arguments + '(#:asd-file "Libraries/Drei/Persistent/persistent.asd")))) |