mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-21 02:03:29 -05:00
gnu: phylip: Remove trailing #T.
* gnu/packages/bioinformatics.scm (phylip)[arguments]: Remove trailing #T from build phases.
This commit is contained in:
parent
4561ca7f4e
commit
125fdc3ba4
1 changed files with 2 additions and 3 deletions
|
@ -9249,7 +9249,7 @@ (define-public phylip
|
|||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'enter-dir
|
||||
(lambda _ (chdir "src") #t))
|
||||
(lambda _ (chdir "src")))
|
||||
(delete 'configure)
|
||||
(replace 'install
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
|
@ -9258,8 +9258,7 @@ (define-public phylip
|
|||
(mkdir-p target)
|
||||
(for-each (lambda (file)
|
||||
(install-file file target))
|
||||
(find-files "../exe" ".*")))
|
||||
#t)))))
|
||||
(find-files "../exe" ".*"))))))))
|
||||
(home-page "http://evolution.genetics.washington.edu/phylip/")
|
||||
(synopsis "Tools for inferring phylogenies")
|
||||
(description "PHYLIP (the PHYLogeny Inference Package) is a package of
|
||||
|
|
Loading…
Reference in a new issue