summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-08-26 21:34:40 +0200
committerLudovic Courtès <ludo@gnu.org>2019-08-27 12:20:44 +0200
commitdd6976dd75ca97572e0e88a6be2e550fb0824c68 (patch)
tree1455f69c72851fc7d20c58b89f8812b6dee86ab1
parenta6baae7486eb1491ba0220b2e490c6a2b8338769 (diff)
downloadguix-dd6976dd75ca97572e0e88a6be2e550fb0824c68.tar.gz
import: github: 'github-package?' uses 'package-upstream-name'.
* guix/import/github.scm (updated-github-url): Use
'package-upstream-name' instead of 'package-name'.  This allows
'github-package?' to match more packages, given an appropriate upstream
name.
-rw-r--r--guix/import/github.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/github.scm b/guix/import/github.scm
index fa23fa4c06..55e1f72a42 100644
--- a/guix/import/github.scm
+++ b/guix/import/github.scm
@@ -49,7 +49,7 @@ false if none is recognized"
   (define (updated-url url)
     (if (string-prefix? "https://github.com/" url)
         (let ((ext     (or (find-extension url) ""))
-              (name    (package-name old-package))
+              (name    (package-upstream-name old-package))
               (version (package-version old-package))
               (prefix  (string-append "https://github.com/"
                                       (github-user-slash-repository url)))