mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: bedtools: Remove unnecessary quasiquotation.
* gnu/packages/bioinformatics.scm (bedtools)[arguments]: Remove quasiquote. [native-inputs]: Drop input label.
This commit is contained in:
parent
4f1a36bd7b
commit
53f65f7315
1 changed files with 7 additions and 6 deletions
|
@ -435,14 +435,15 @@ (define-public bedtools
|
|||
"1f2hh79l7dn147c2xyfgf5wfjvlqfw32kjfnnh2n1qy6rpzx2fik"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:test-target "test"
|
||||
#:make-flags
|
||||
,#~(list (string-append "prefix=" #$output))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(list
|
||||
#:test-target "test"
|
||||
#:make-flags
|
||||
#~(list (string-append "prefix=" #$output))
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
(delete 'configure))))
|
||||
(native-inputs
|
||||
`(("python" ,python-wrapper)))
|
||||
(list python-wrapper))
|
||||
(inputs
|
||||
(list samtools zlib))
|
||||
(home-page "https://github.com/arq5x/bedtools2")
|
||||
|
|
Loading…
Reference in a new issue