Archived
1
0
Fork 0

gnu: bedtools: Remove unnecessary quasiquotation.

* gnu/packages/bioinformatics.scm (bedtools)[arguments]: Remove quasiquote.
[native-inputs]: Drop input label.
This commit is contained in:
Ricardo Wurmus 2022-12-13 15:13:57 +01:00
parent 4f1a36bd7b
commit 53f65f7315
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -435,14 +435,15 @@ computational cluster.")
"1f2hh79l7dn147c2xyfgf5wfjvlqfw32kjfnnh2n1qy6rpzx2fik")))) "1f2hh79l7dn147c2xyfgf5wfjvlqfw32kjfnnh2n1qy6rpzx2fik"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:test-target "test" (list
#:make-flags #:test-target "test"
,#~(list (string-append "prefix=" #$output)) #:make-flags
#:phases #~(list (string-append "prefix=" #$output))
(modify-phases %standard-phases #:phases
'(modify-phases %standard-phases
(delete 'configure)))) (delete 'configure))))
(native-inputs (native-inputs
`(("python" ,python-wrapper))) (list python-wrapper))
(inputs (inputs
(list samtools zlib)) (list samtools zlib))
(home-page "https://github.com/arq5x/bedtools2") (home-page "https://github.com/arq5x/bedtools2")