import: elpa: 'elpa->guix-package' accepts other keyword arguments.
This is a followup to 3c24da4260
.
* guix/import/elpa.scm (elpa->guix-package): Add #:allow-other-keys.
master
parent
59640af1c5
commit
8e065692c2
|
@ -376,7 +376,8 @@ type '<elpa-package>'."
|
|||
(license ,license))
|
||||
dependencies-names))
|
||||
|
||||
(define* (elpa->guix-package name #:key (repo 'gnu) version)
|
||||
(define* (elpa->guix-package name #:key (repo 'gnu) version
|
||||
#:allow-other-keys)
|
||||
"Fetch the package NAME from REPO and produce a Guix package S-expression."
|
||||
(match (fetch-elpa-package name repo)
|
||||
(#false
|
||||
|
|
Reference in New Issue