gnu: bedtools-2.18: Fix build with newer toolchain.
* gnu/packages/bioinformatics.scm (bedtools-2.18)[arguments]: Add phase 'compatibility, fixing syntax quirks that are problematic with newer toolchains. [native-inputs]: Do not inherit. [inherit]: Do not inherit.master
parent
3c3d7f0410
commit
d54a4285ea
|
@ -544,14 +544,26 @@ BED, GFF/GTF, VCF.")
|
||||||
'(#:test-target "test"
|
'(#:test-target "test"
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'compatibility
|
||||||
|
(lambda _
|
||||||
|
(substitute* "src/utils/fileType/FileRecordTypeChecker.h"
|
||||||
|
(("static const float PERCENTAGE")
|
||||||
|
"static constexpr float PERCENTAGE"))
|
||||||
|
(substitute* "src/utils/general/DualQueue.h"
|
||||||
|
(("template <class T, template<class T> class CompareFunc>")
|
||||||
|
"template <class T, template<class U> class CompareFunc>"))))
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
|
(let ((bin (string-append (assoc-ref outputs "out") "/bin/")))
|
||||||
(for-each (lambda (file)
|
(for-each (lambda (file)
|
||||||
(install-file file bin))
|
(install-file file bin))
|
||||||
(find-files "bin" ".*")))
|
(find-files "bin" ".*"))))))))
|
||||||
#t)))))))
|
(native-inputs
|
||||||
|
`(("python" ,python-wrapper)))
|
||||||
|
(inputs
|
||||||
|
`(("samtools" ,samtools)
|
||||||
|
("zlib" ,zlib)))))
|
||||||
|
|
||||||
(define-public pbbam
|
(define-public pbbam
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue