diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-05-31 19:48:19 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-06-04 22:34:32 +0200 |
commit | c4989f756908f258d2516465e15a807059a1744c (patch) | |
tree | 94594f9ef9f05320b6145c71e2890b083f530672 /gnu/packages | |
parent | fadbac0ecc7b7ca314a265de5a1eae07946c0d61 (diff) | |
download | guix-c4989f756908f258d2516465e15a807059a1744c.tar guix-c4989f756908f258d2516465e15a807059a1744c.tar.gz |
gnu: prinseq: Set #:guile argument of 'wrap-script'.
* gnu/packages/bioinformatics.scm
(prinseq)[arguments]<#:phases>{install}:
Set #:guile argument of ‘wrap-script’.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 7d8496e692..37483984ec 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -7557,7 +7557,8 @@ experience substantial biological insertions and deletions.") (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin")) - (scripts (find-files "." "prinseq.*.pl"))) + (scripts (find-files "." "prinseq.*.pl")) + (guile (search-input-file "bin/guile"))) (substitute* scripts (("\"perl -pe") (string-append "\"" (which "perl") " -pe"))) @@ -7565,6 +7566,7 @@ experience substantial biological insertions and deletions.") (chmod file #o555) (install-file file bin) (wrap-script (string-append bin "/" (basename file)) + #:guile guile `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB"))))) scripts))))))) |