diff options
author | Alex Kost <alezost@gmail.com> | 2016-03-03 12:53:03 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2016-03-04 13:17:36 +0300 |
commit | db0c709b9aa75b44cdc6a5c0e0b9c9a1ab5212ec (patch) | |
tree | 119b0c9d71eb008227891b814c6f71b18c6b9c38 /emacs/guix-base.el | |
parent | b8fa5a2ae8b4c78ec84792e1a1d807ac6a675443 (diff) | |
download | patches-db0c709b9aa75b44cdc6a5c0e0b9c9a1ab5212ec.tar patches-db0c709b9aa75b44cdc6a5c0e0b9c9a1ab5212ec.tar.gz |
emacs: Use '@' to separate package names and version numbers.
This is a followup to commit 1b846da8c372bee78851439fd9e72b2499115e5a.
* emacs/guix-base.el (guix-package-name-specification): Use "@" instead
of "-".
* emacs/guix-main.scm (name+version->full-name): Likewise.
(package-inputs-names): Use 'make-package-specification' instead of
'package-full-name'.
(full-name->name+version): Update the docstring.
* emacs/guix-ui-package.el (guix-packages-by-name): Likewise.
Diffstat (limited to 'emacs/guix-base.el')
-rw-r--r-- | emacs/guix-base.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/guix-base.el b/emacs/guix-base.el index 1248ecbce5..75d19cbfe0 100644 --- a/emacs/guix-base.el +++ b/emacs/guix-base.el @@ -44,7 +44,7 @@ (defun guix-package-name-specification (name version &optional output) "Return Guix package specification by its NAME, VERSION and OUTPUT." - (concat name "-" version + (concat name "@" version (when output (concat ":" output)))) |