gnu: r-ggbio: Fix build.
* gnu/packages/bioinformatics.scm (r-ggbio)[arguments]: Add build phase to patch out typo.
This commit is contained in:
parent
d22d790409
commit
fc3ebc3023
|
@ -9953,6 +9953,16 @@ effort and encourages consistency.")
|
||||||
(base32
|
(base32
|
||||||
"0wq49qqzkcn8s19xgaxf2s1j1a563d7pbhhvris6fhxfdjsz4934"))))
|
"0wq49qqzkcn8s19xgaxf2s1j1a563d7pbhhvris6fhxfdjsz4934"))))
|
||||||
(build-system r-build-system)
|
(build-system r-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
;; See https://github.com/tengfei/ggbio/issues/117
|
||||||
|
;; This fix will be included in the next release.
|
||||||
|
(add-after 'unpack 'fix-typo
|
||||||
|
(lambda _
|
||||||
|
(substitute* "R/GGbio-class.R"
|
||||||
|
(("fechable") "fetchable"))
|
||||||
|
#t)))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("r-annotationdbi" ,r-annotationdbi)
|
`(("r-annotationdbi" ,r-annotationdbi)
|
||||||
("r-annotationfilter" ,r-annotationfilter)
|
("r-annotationfilter" ,r-annotationfilter)
|
||||||
|
|
Loading…
Reference in New Issue