me
/
guix
Archived
1
0
Fork 0

gnu: distrobox: Skip substitution in man pages.

* gnu/packages/containers.scm (distrobox)[arguments]: Change refer-to-inputs
phase to not substitute in man pages.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Michael Rohleder 2023-02-15 06:01:56 +01:00 committed by Nicolas Goaziou
parent a4b5876a77
commit d292a63cdb
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ runtime (like runc or crun) for a single container.")
#~(modify-phases %standard-phases
(add-before 'install 'refer-to-inputs
(lambda* (#:key inputs #:allow-other-keys)
(substitute* (find-files "." "^distrobox.*")
(substitute* (find-files "." "^distrobox.*[^1]$")
(("podman") (search-input-file inputs "/bin/podman"))
(("wget") (search-input-file inputs "/bin/wget"))
(("command -v") "test -x"))))