3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01: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:
Ricardo Wurmus 2019-04-27 20:44:43 +02:00
parent d22d790409
commit fc3ebc3023
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -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)