diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-03-04 17:02:07 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-03-04 17:23:27 +0100 |
commit | f61e0e79006f1192c33622c4d564e95391763224 (patch) | |
tree | 210fa85de8be6d346327c302425cdf6905929daa /gnu/packages/emacs.scm | |
parent | 6d0b9d03ced244093c026b3433ec06643d78236c (diff) | |
download | patches-f61e0e79006f1192c33622c4d564e95391763224.tar patches-f61e0e79006f1192c33622c4d564e95391763224.tar.gz |
gnu: Avoid #:prefix when importing a (gnu packages …) module.
* gnu/packages/admin.scm, gnu/packages/emacs.scm,
gnu/packages/gnutls.scm, gnu/packages/gsasl.scm,
gnu/packages/linux.scm: Remove uses of #:prefix for package modules.
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index b2a151a68e..0a6b15383f 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -20,7 +20,7 @@ ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu packages emacs) - #:use-module (guix licenses) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) @@ -42,7 +42,7 @@ #:use-module (gnu packages w3m) #:use-module (gnu packages wget) #:use-module (gnu packages autotools) - #:use-module ((gnu packages compression) #:prefix compression:) + #:use-module (gnu packages compression) #:use-module (gnu packages xml) #:use-module (gnu packages glib) #:use-module (gnu packages acl) @@ -90,7 +90,7 @@ ;; When looking for libpng `configure' links with `-lpng -lz', so we ;; must also provide zlib as an input. ("libpng" ,libpng) - ("zlib" ,compression:zlib) + ("zlib" ,zlib) ("libXpm" ,libxpm) ("libxml2" ,libxml2) @@ -112,7 +112,7 @@ spreadsheets, remote server editing, and much more. Emacs includes extensive documentation on all aspects of the system, from basic editing to writing large Lisp programs. It has full Unicode support for nearly all human languages.") - (license gpl3+))) + (license license:gpl3+))) (define-public emacs-no-x-toolkit (package (inherit emacs) @@ -170,7 +170,7 @@ at corpses, the continuously running Scheme interpreter takes the center of the stage in Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme interpreter, Emacs and, ultimately, the schemer, giving her access to live metadata.") - (license bsd-3))) + (license license:bsd-3))) (define-public paredit (package @@ -215,7 +215,7 @@ ParEdit helps **keep parentheses balanced** and adds many keys for moving S-expressions and moving around in S-expressions. Its behavior can be jarring for those who may want transient periods of unbalanced parentheses, such as when typing parentheses directly or commenting out code line by line.") - (license gpl3+))) + (license license:gpl3+))) (define-public magit (package @@ -272,7 +272,7 @@ You can review and commit the changes you have made to the tracked files, for example, and you can browse the history of past changes. There is support for cherry picking, reverting, merging, rebasing, and other common Git operations.") - (license gpl3+))) + (license license:gpl3+))) ;;; @@ -347,7 +347,7 @@ operations.") (synopsis "Simple Web browser for Emacs based on w3m") (description "Emacs-w3m is an emacs interface for the w3m web browser.") - (license gpl2+))) + (license license:gpl2+))) (define-public emacs-wget (package @@ -394,7 +394,7 @@ operations.") (synopsis "Simple file downloader for Emacs based on wget") (description "Emacs-wget is an emacs interface for the wget file downloader.") - (license gpl2+))) + (license license:gpl2+))) ;;; @@ -517,7 +517,7 @@ whatever formats are supported by your music player. It also supports tagging and playlist management, all behind a clean and light user interface.") (home-page "http://www.gnu.org/software/emms/") - (license gpl3+))) + (license license:gpl3+))) ;;; @@ -560,4 +560,4 @@ light user interface.") an address book for email and snail mail addresses, phone numbers and the like. It can be linked with various Emacs mail clients (Message and Mail mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.") - (license gpl3+))) + (license license:gpl3+))) |