mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
import: elpa: Use the expected repo in recursive imports.
* guix/import/elpa.scm (elpa-recursive-import): Pass REPO in calls to 'elpa->guix-package'.
This commit is contained in:
parent
8e065692c2
commit
39eb9b5a5c
1 changed files with 6 additions and 3 deletions
|
@ -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 @@ (define elpa-guix-name (cut guix-name "emacs-" <>))
|
|||
|
||||
(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
|
||||
|
|
Loading…
Reference in a new issue