mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: r-seurat: Fix build.
This is a follow-up to commit e4d4046999
* gnu/packages/cran.scm (r-seurat)[arguments]: Patch NAMESPACE file.
This commit is contained in:
parent
fcb122b4ed
commit
29e992c030
1 changed files with 12 additions and 0 deletions
|
@ -26491,6 +26491,18 @@ (define-public r-seurat
|
|||
"1mp3py00bmzj4541d8ry5sfzkpfzvnl9dpa8n4qhakd13dl30xdn"))))
|
||||
(properties `((upstream-name . "Seurat")))
|
||||
(build-system r-build-system)
|
||||
;; This is needed because r-spatstat has been split up and there has
|
||||
;; been no new release of Seurat since then.
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-spatstat-import
|
||||
(lambda _
|
||||
(substitute* "NAMESPACE"
|
||||
(("importFrom\\(spatstat,markvario\\)")
|
||||
"importFrom(spatstat.core,markvario)")
|
||||
(("importFrom\\(spatstat,ppp\\)")
|
||||
"importFrom(spatstat.geom,ppp)")))))))
|
||||
(propagated-inputs
|
||||
`(("r-cluster" ,r-cluster)
|
||||
("r-cowplot" ,r-cowplot)
|
||||
|
|
Loading…
Reference in a new issue