me
/
guix
Archived
1
0
Fork 0

gnu: Add r-httpgd.

* gnu/packages/statistics.scm (r-httpgd): New variable.

Change-Id: Ic92860e67ef1153f23a4a1cf4f2a851fa059cdda
master
Ricardo Wurmus 2024-02-16 15:56:05 +01:00
parent 1d6dcf4f80
commit 96a2357a8a
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 30 additions and 0 deletions

View File

@ -1519,6 +1519,36 @@ it supports LaTeX and HTML output. Source code of other languages is
supported via Andre Simon's highlight package.") supported via Andre Simon's highlight package.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public r-httpgd
(let ((commit "3f5f55822c4dce930155b91cedcfd4d483e3294e")
(revision "1"))
(package
(name "r-httpgd")
(version (git-version "2.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/nx10/httpgd")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "14i7mhbv1vcz2886w9lii9zhgr4zhhc844349syb989nhhzg552n"))))
(properties `((upstream-name . "httpgd")))
(build-system r-build-system)
(propagated-inputs (list r-asioheaders r-cpp11 r-unigd))
(native-inputs (list r-knitr))
(home-page "https://github.com/nx10/httpgd")
(synopsis "'HTTP' Server Graphics Device")
(description
"This package provides a graphics device for R that is accessible via
network protocols. This package was created to make it easier to embed live R
graphics in integrated development environments and other applications. The
included HTML/@code{JavaScript} client (plot viewer) aims to provide a better
overall user experience when dealing with R graphics. The device
asynchronously serves graphics via HTTP and @code{WebSockets}'.")
(license license:gpl2+))))
(define-public r-mime (define-public r-mime
(package (package
(name "r-mime") (name "r-mime")