1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-25 03:30:30 +02:00

gnu: guix-daemon: Fix file name of 'guix' command.

Fixes <https://bugs.gnu.org/32183>.
Reported by Pjotr Prins <pjotr.public12@thebird.nl>.

* gnu/packages/package-management.scm (guix-daemon)[arguments]: In
'install' phase, fix file name of 'guix' command.
This commit is contained in:
Ludovic Courtès
2018-07-18 00:25:06 +02:00
parent df35e71542
commit 799dc53e9b

View File

@@ -348,7 +348,7 @@ the Nix package manager.")
(let ((out (assoc-ref outputs "out")))
(substitute* (find-files (string-append out "/libexec"))
(("exec \".*/bin/guix\"")
"exec ~root/.config/current/bin/guix"))
"exec ~root/.config/guix/current/bin/guix"))
#t)))
(delete 'wrap-program)))))))