diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2018-10-19 18:00:14 +0200 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2018-10-19 18:00:14 +0200 |
commit | 3bd45f5c809a56baafb355d93c1d2a243d6dd996 (patch) | |
tree | e6312676deb92c3e09c28668e18854449377e68d | |
parent | e2e5004f6ee4f210440e4c8a2466185c463b8dbb (diff) | |
download | patches-3bd45f5c809a56baafb355d93c1d2a243d6dd996.tar patches-3bd45f5c809a56baafb355d93c1d2a243d6dd996.tar.gz |
gnu: emacs-slime: License is a mix of GPL2+ and public domain.
* gnu/packages/emacs.scm (emacs-slime)[license]: Update to (gpl2+ public-domain)
-rw-r--r-- | gnu/packages/emacs.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 57841e86fa..6b360b5ac3 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3091,7 +3091,7 @@ an Emacs minor mode that complements the standard @command{lisp-mode}. While lisp-mode supports editing Lisp source files, @command{slime-mode} adds support for interacting with a running Common Lisp process for compilation, debugging, documentation lookup, and so on.") - (license license:gpl2+))) + (license (list license:gpl2+ license:public-domain)))) (define-public emacs-popup (package |