diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-12-13 15:13:57 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-12-13 16:31:54 +0100 |
commit | 53f65f7315c3f37d670a6164e72cf0c96cab6c2e (patch) | |
tree | e347eacdafd2eeb9318edd1b1745c01b04fb92f6 /gnu | |
parent | 4f1a36bd7b8febbcabbed76cdb9534e279445bd0 (diff) |
gnu: bedtools: Remove unnecessary quasiquotation.
* gnu/packages/bioinformatics.scm (bedtools)[arguments]: Remove quasiquote.
[native-inputs]: Drop input label.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 5291056dc8..1ead24dff1 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -435,14 +435,15 @@ computational cluster.") "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") |