mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 11:25:22 -05:00
gnu: Add r-rprotobuflib.
* gnu/packages/bioconductor.scm (r-rprotobuflib): New variable.
This commit is contained in:
parent
c8ab9eb1b4
commit
f1964519e7
1 changed files with 30 additions and 0 deletions
|
@ -5471,6 +5471,36 @@ (define-public r-flowclust
|
|||
model with Box-Cox transformation.")
|
||||
(license license:artistic2.0)))
|
||||
|
||||
;; TODO: this package bundles an old version of protobuf. It's not easy to
|
||||
;; make it use our protobuf package instead.
|
||||
(define-public r-rprotobuflib
|
||||
(package
|
||||
(name "r-rprotobuflib")
|
||||
(version "1.8.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (bioconductor-uri "RProtoBufLib" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0dlgki21a37bxqh3cf83vl5zqxm86472g8a9plvhrjzzsn3mwnrm"))))
|
||||
(properties `((upstream-name . "RProtoBufLib")))
|
||||
(build-system r-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'unpack-bundled-sources
|
||||
(lambda _
|
||||
(with-directory-excursion "src"
|
||||
(invoke "tar" "xf" "protobuf-2.6.0.tgz"))
|
||||
#t)))))
|
||||
(home-page "https://bioconductor.org/packages/RProtoBufLib/")
|
||||
(synopsis "C++ headers and static libraries of Protocol buffers")
|
||||
(description
|
||||
"This package provides the headers and static library of Protocol buffers
|
||||
for other R packages to compile and link against.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public r-flowsom
|
||||
(package
|
||||
(name "r-flowsom")
|
||||
|
|
Loading…
Reference in a new issue