mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: filtlong: Remove trailing #T from build phases.
* gnu/packages/bioinformatics.scm (filtlong)[arguments]: Remove trailing #T.
This commit is contained in:
parent
e20ca244db
commit
f5ffcd31c2
1 changed files with 3 additions and 6 deletions
|
@ -14332,21 +14332,18 @@ (define-public filtlong
|
|||
(scripts (string-append out "/share/filtlong/scripts")))
|
||||
(install-file "bin/filtlong" bin)
|
||||
(install-file "scripts/histogram.py" scripts)
|
||||
(install-file "scripts/read_info_histograms.sh" scripts))
|
||||
#t))
|
||||
(install-file "scripts/read_info_histograms.sh" scripts))))
|
||||
(add-after 'install 'wrap-program
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(path (getenv "GUIX_PYTHONPATH")))
|
||||
(wrap-program (string-append out
|
||||
"/share/filtlong/scripts/histogram.py")
|
||||
`("GUIX_PYTHONPATH" ":" prefix (,path))))
|
||||
#t))
|
||||
`("GUIX_PYTHONPATH" ":" prefix (,path))))))
|
||||
(add-before 'check 'patch-tests
|
||||
(lambda _
|
||||
(substitute* "scripts/read_info_histograms.sh"
|
||||
(("awk") (which "gawk")))
|
||||
#t)))))
|
||||
(("awk") (which "gawk"))))))))
|
||||
(inputs
|
||||
`(("gawk" ,gawk) ;for read_info_histograms.sh
|
||||
("python" ,python-2) ;required for histogram.py
|
||||
|
|
Loading…
Reference in a new issue