mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: r-gqtlbase: Update to 1.21.1.
Co-authored-by: Ricardo Wurmus <rekado@elephly.net> * gnu/packages/bioinformatics.scm (r-gqtlbase): Update to 1.21.1. [arguments]: Add phase to patch broken NAMESPACE file.
This commit is contained in:
parent
64f9fb308f
commit
6a4818716d
1 changed files with 12 additions and 2 deletions
|
@ -10563,16 +10563,26 @@ (define-public r-ggbio
|
||||||
(define-public r-gqtlbase
|
(define-public r-gqtlbase
|
||||||
(package
|
(package
|
||||||
(name "r-gqtlbase")
|
(name "r-gqtlbase")
|
||||||
(version "1.20.4")
|
(version "1.21.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (bioconductor-uri "gQTLBase" version))
|
(uri (bioconductor-uri "gQTLBase" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1ly14vhhqxjpbxjypi6ppd37dycabdhf4ny4nsvp9969k418zv41"))))
|
"0nipibm1bk9k70ajbw1f6vjmz0dh7gk21l17q3m54bnawxsggrfh"))))
|
||||||
(properties `((upstream-name . "gQTLBase")))
|
(properties `((upstream-name . "gQTLBase")))
|
||||||
(build-system r-build-system)
|
(build-system r-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
;; This is an upstream bug.
|
||||||
|
(add-after 'unpack 'fix-imports
|
||||||
|
(lambda _
|
||||||
|
(substitute* "NAMESPACE"
|
||||||
|
((".*maxffmode.*") "")
|
||||||
|
(("importFrom\\(ff,.*") "import(ff)\n"))
|
||||||
|
#t)))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("r-batchjobs" ,r-batchjobs)
|
`(("r-batchjobs" ,r-batchjobs)
|
||||||
("r-bbmisc" ,r-bbmisc)
|
("r-bbmisc" ,r-bbmisc)
|
||||||
|
|
Loading…
Reference in a new issue