me
/
guix
Archived
1
0
Fork 0

import: elpa: Use the expected repo in recursive imports.

* guix/import/elpa.scm (elpa-recursive-import): Pass REPO in calls to
'elpa->guix-package'.
master
Ludovic Courtès 2023-05-04 12:30:30 +02:00
parent 8e065692c2
commit 39eb9b5a5c
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
;;; Copyright © 2015, 2016, 2017, 2018, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015-2018, 2020-2021, 2023 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net>
@ -456,8 +456,11 @@ type '<elpa-package>'."
(define* (elpa-recursive-import package-name #:optional (repo 'gnu))
(recursive-import package-name
#:repo repo
#:repo->guix-package elpa->guix-package
#:repo->guix-package
(lambda (name . rest)
(apply elpa->guix-package name
#:repo repo
rest))
#:guix-name elpa-guix-name))
;;; elpa.scm ends here