mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
self: 'guix-daemon' wrapper refers to the right Guile.
Partly fixes <https://issues.guix.gnu.org/56030>. Reported by Julien Lepiller <julien@lepiller.eu>. * guix/self.scm (whole-package)[wrap]: Pass #:guile to 'program-file'.
This commit is contained in:
parent
b36c41ee54
commit
d418031a8c
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2017-2022 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
|
@ -699,7 +699,8 @@ (define (wrap daemon)
|
|||
(setenv "NIX_STORE_DIR" #$%storedir))
|
||||
|
||||
(apply execl #$(file-append daemon "/bin/guix-daemon")
|
||||
"guix-daemon" (cdr (command-line))))))
|
||||
"guix-daemon" (cdr (command-line))))
|
||||
#:guile guile))
|
||||
|
||||
(computed-file name
|
||||
(with-imported-modules '((guix build utils))
|
||||
|
|
Loading…
Reference in a new issue