import: elpa: Check if 'fetch-elpa-package' rest argument is null.
* guix/import/elpa.scm (fetch-elpa-package): Check if 'rest' is null.
This commit is contained in:
parent
3a15d0aa9c
commit
ae6fa00af0
|
@ -187,7 +187,9 @@ include VERSION."
|
|||
(url (package-source-url kind name ver repo)))
|
||||
(make-elpa-package name ver
|
||||
(ensure-list reqs) synopsis kind
|
||||
(package-home-page (first rest))
|
||||
(package-home-page (match rest
|
||||
(() #f)
|
||||
((one) one)))
|
||||
(fetch-package-description kind name repo)
|
||||
url)))
|
||||
(_ #f))))
|
||||
|
|
Loading…
Reference in New Issue