On Thu, 28 Apr 2016 04:25:23 +0200 Cyril Roelandt <[email protected]> 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
