guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] guix: use '@' in package-full-name instead of '-'


From: Eric Bavier
Subject: Re: [PATCH] guix: use '@' in package-full-name instead of '-'
Date: Wed, 27 Apr 2016 22:03:16 -0500

On Thu, 28 Apr 2016 04:25:23 +0200
Cyril Roelandt <address@hidden> wrote:

> * guix/packages.scm (package-full-name): Use '@' instead of '-'.
> ---
>  guix/packages.scm | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/guix/packages.scm b/guix/packages.scm
> index d62d1f3..e33791e 100644
> --- a/guix/packages.scm
> +++ b/guix/packages.scm
> @@ -346,7 +346,7 @@ name of its URI."
>  
>  (define (package-full-name package)
>    "Return the full name of PACKAGE--i.e., `NAME-VERSION'."

Could you replace the '-' here too? --------------^

> -  (string-append (package-name package) "-" (package-version package)))
> +  (string-append (package-name package) "@" (package-version package)))
>  
>  (define (%standard-patch-inputs)
>    (let* ((canonical (module-ref (resolve-interface '(gnu packages base))

LGTM!

`~Eric



reply via email to

[Prev in Thread] Current Thread [Next in Thread]