mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
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
1 changed files with 10 additions and 0 deletions
|
@ -9953,6 +9953,16 @@ (define-public r-ggbio
|
|||
(base32
|
||||
"0wq49qqzkcn8s19xgaxf2s1j1a563d7pbhhvris6fhxfdjsz4934"))))
|
||||
(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
|
||||
`(("r-annotationdbi" ,r-annotationdbi)
|
||||
("r-annotationfilter" ,r-annotationfilter)
|
||||
|
|
Loading…
Reference in a new issue