diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-02-16 15:56:05 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-02-16 15:57:29 +0100 |
commit | 96a2357a8a19bd4a796fdf1a875f7f3e0c91030c (patch) | |
tree | 2dc719860eab29d15a33170e83b0e01388bd799e | |
parent | 1d6dcf4f80763bfc693c1d7ec238db712e2985bf (diff) |
gnu: Add r-httpgd.
* gnu/packages/statistics.scm (r-httpgd): New variable.
Change-Id: Ic92860e67ef1153f23a4a1cf4f2a851fa059cdda
-rw-r--r-- | gnu/packages/statistics.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 37eac6d2bd..bdb3fe1465 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1519,6 +1519,36 @@ it supports LaTeX and HTML output. Source code of other languages is supported via Andre Simon's highlight package.") (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 (package (name "r-mime") |