me
/
guix
Archived
1
0
Fork 0

gnu: pardre: Update to 2.2.5.

* gnu/packages/bioinformatics.scm (pardre): Update to 2.2.5.
[arguments]: Remove trailing #T and update comment about tests.
master
Ricardo Wurmus 2021-12-02 15:29:00 +01:00
parent fc20fad6f7
commit 28ad55a59d
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 5 additions and 7 deletions

View File

@ -8126,27 +8126,25 @@ Needleman-Wunsch).")
(define-public pardre (define-public pardre
(package (package
(name "pardre") (name "pardre")
;; The source of 1.1.5 changed in place, so we append "-1" to the version. (version "2.2.5")
(version "1.1.5-1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://sourceforge/pardre/ParDRe-rel" (uri (string-append "mirror://sourceforge/pardre/ParDRe-rel"
"1.1.5" ".tar.gz")) version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"17j73nc0viq4f6qj50nrndsrif5d6b71q8fl87m54psiv0ilns2b")))) "105s4f8zs8hh0sc32r9p725n7idza9cj5jvp5z1m5pljjhgk3if5"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f ; no tests included `(#:tests? #f ; tests require "prove"
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(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")))
(install-file "ParDRe" bin) (install-file "ParDRe" bin)))))))
#t))))))
(inputs (inputs
`(("openmpi-c++" ,openmpi-c++) `(("openmpi-c++" ,openmpi-c++)
("zlib" ,zlib))) ("zlib" ,zlib)))