guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#55608] [PATCH] gnu: Add pbuilder.


From: Maxime Devos
Subject: [bug#55608] [PATCH] gnu: Add pbuilder.
Date: Tue, 24 May 2022 12:09:36 +0200
User-agent: Evolution 3.38.3-1

Efraim Flashner schreef op di 24-05-2022 om 10:59 [+0300]:
> +           (add-after 'install-more 'wrap-programs
> +             (lambda* (#:key native-inputs inputs outputs #:allow-other-keys)
> +               (for-each
> +                 (lambda (file)
> +                   (wrap-script file
> +                    `("PATH" ":" prefix
> +                      (,(dirname (search-input-file (or native-inputs 
> inputs) "/bin/cut"))
> +                       ,(dirname (search-input-file (or native-inputs 
> inputs) "/bin/dpkg"))
> +                       ,(dirname (search-input-file (or native-inputs 
> inputs) "/bin/grep"))
> +                       ,(dirname (search-input-file (or native-inputs 
> inputs) "/bin/perl"))
> +                       ,(dirname (search-input-file (or native-inputs 
> inputs) "/bin/sed"))
> +                       ,(dirname (search-input-file (or native-inputs 
> inputs) "/bin/which"))
> +                       ,(dirname (search-input-file (or native-inputs 
> inputs) "/sbin/debootstrap"))))))

Shouldn't these be inputs instead of native-inputs, because they will
end up being run when pbuilder is run?  Likewise for'patch-source'.
Also, can be simplified to

[...] "PATH" ":" prefix ,(map (compose dirname (cut search-input-file inputs 
<>)) '("/bin/cut" "/bin/dpkg" ...)) [...]


Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

[Prev in Thread] Current Thread [Next in Thread]