From 43892525fc981533445e60a649425791cc315d0a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 6 May 2017 14:32:12 +0200 Subject: [PATCH 4/4] packages: Use "@" as a version separator. * guix/packages.scm (package-full-name): Use "@" instead of "-" to separate PACKAGE-NAME and PACKAGE-VERSION. --- guix/packages.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guix/packages.scm b/guix/packages.scm index 44f2c32fb..802405102 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -385,8 +385,8 @@ object." (define (package-full-name package) - "Return the full name of PACKAGE--i.e., `NAME-VERSION'." - (string-append (package-name package) "-" (package-version package))) + "Return the full name of PACKAGE--i.e., `NAME@VERSION'." + (string-append (package-name package) "@" (package-version package))) (define (%standard-patch-inputs) (let* ((canonical (module-ref (resolve-interface '(gnu packages base)) -- 2.12.2