me
/
guix
Archived
1
0
Fork 0

gnu: bedtools-2.18: Use gexp.

* gnu/packages/bioinformatics.scm (bedtools-2.18)[arguments]: Use gexp.
[native-inputs]: Drop package label.
Ricardo Wurmus 2022-12-14 22:47:43 +01:00
parent 7b8cac86ba
commit 1689215a30
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 20 additions and 19 deletions

View File

@ -482,9 +482,10 @@ BED, GFF/GTF, VCF.")
(base32 (base32
"11rvca19ncg03kxd0wzlfx5ws7r3nisd0z8s9j9n182d8ksp2pxz")))) "11rvca19ncg03kxd0wzlfx5ws7r3nisd0z8s9j9n182d8ksp2pxz"))))
(arguments (arguments
'(#:test-target "test" (list
#:test-target "test"
#:phases #:phases
(modify-phases %standard-phases #~(modify-phases %standard-phases
(add-after 'unpack 'compatibility (add-after 'unpack 'compatibility
(lambda _ (lambda _
(substitute* "src/utils/fileType/FileRecordTypeChecker.h" (substitute* "src/utils/fileType/FileRecordTypeChecker.h"
@ -495,13 +496,13 @@ BED, GFF/GTF, VCF.")
"template <class T, template<class U> 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 _
(let ((bin (string-append (assoc-ref outputs "out") "/bin/"))) (let ((bin (string-append #$output "/bin/")))
(for-each (lambda (file) (for-each (lambda (file)
(install-file file bin)) (install-file file bin))
(find-files "bin" ".*")))))))) (find-files "bin" ".*"))))))))
(native-inputs (native-inputs
`(("python" ,python-wrapper))) (list python-wrapper))
(inputs (inputs
(list samtools zlib)))) (list samtools zlib))))