3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: kaiju: Fetch sources from git.

* gnu/packages/bioinformatics.scm (kaiju)[source]: Fetch from git.
[arguments]: Remove redundant installation step.
This commit is contained in:
Ricardo Wurmus 2018-11-07 20:44:11 +01:00
parent f0731591a5
commit 6fe323bf2e
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3828,14 +3828,14 @@ data.")
(name "kaiju")
(version "1.6.2")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/bioinformatics-centre/kaiju/archive/v"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/bioinformatics-centre/kaiju")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1kdn4rxs0kr9ibmrgrfcci71aa6j6gr71dbc8pff7731rpab6kj7"))))
"1c6gqir9djm3wpvfjm43i5vvvf36k3rsvr9fph76wlcy9aghpbah"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; There are no tests.
@ -3849,8 +3849,7 @@ data.")
(let ((bin (string-append (assoc-ref outputs "out") "/bin")))
(mkdir-p bin)
(chdir "..")
(copy-recursively "bin" bin)
(copy-recursively "util" bin))
(copy-recursively "bin" bin))
#t)))))
(inputs
`(("perl" ,perl)