gnu: r-plogr: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-plogr): Move from here... * gnu/packages/cran.scm (r-plogr): ...to here.
This commit is contained in:
parent
5bee6bf409
commit
847b457253
|
@ -62,3 +62,23 @@ colors are provided.")
|
||||||
inspired by Python's Literal String Interpolation (PEP-0498) and
|
inspired by Python's Literal String Interpolation (PEP-0498) and
|
||||||
Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
|
Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public r-plogr
|
||||||
|
(package
|
||||||
|
(name "r-plogr")
|
||||||
|
(version "0.1-1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "plogr" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"13zliqlbkl8b04k9ga0sx5jsh7k867gracgl84l2a9kcqy9mqx92"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(home-page "https://github.com/krlmlr/plogr")
|
||||||
|
(synopsis "R bindings for the plog C++ logging library")
|
||||||
|
(description
|
||||||
|
"This package provides the header files for a stripped-down version of
|
||||||
|
the plog header-only C++ logging library, and a method to log to R's standard
|
||||||
|
error stream.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
|
@ -2585,26 +2585,6 @@ variety of formats.")
|
||||||
and draw tables.")
|
and draw tables.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public r-plogr
|
|
||||||
(package
|
|
||||||
(name "r-plogr")
|
|
||||||
(version "0.1-1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (cran-uri "plogr" version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"13zliqlbkl8b04k9ga0sx5jsh7k867gracgl84l2a9kcqy9mqx92"))))
|
|
||||||
(build-system r-build-system)
|
|
||||||
(home-page "https://github.com/krlmlr/plogr")
|
|
||||||
(synopsis "R bindings for the plog C++ logging library")
|
|
||||||
(description
|
|
||||||
"This package provides the header files for a stripped-down version of
|
|
||||||
the plog header-only C++ logging library, and a method to log to R's standard
|
|
||||||
error stream.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public r-pkgconfig
|
(define-public r-pkgconfig
|
||||||
(package
|
(package
|
||||||
(name "r-pkgconfig")
|
(name "r-pkgconfig")
|
||||||
|
|
Loading…
Reference in New Issue