[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add r-restrserve.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add r-restrserve. |
Date: |
Wed, 09 Dec 2020 14:34:08 -0500 |
This is an automated email from the git hooks/post-receive script.
cbaines pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new e36291e gnu: Add r-restrserve.
e36291e is described below
commit e36291ef52a30b1c667b78ef76c1980363f8c138
Author: Eric Brown <ecbrown@ericcbrown.com>
AuthorDate: Wed Apr 22 06:07:14 2020 -0500
gnu: Add r-restrserve.
* gnu/packages/cran.scm (r-restrserve): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/cran.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 05b1541..fb6507b 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -2632,6 +2632,36 @@ quantities.")
@code{melt} and @code{cast}. This package provides them.")
(license license:expat)))
+(define-public r-restrserve
+ (package
+ (name "r-restrserve")
+ (version "0.4.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "RestRserve" version))
+ (sha256
+ (base32 "07mm65yxzpwlg6x3lsggj41v8nl4m6v9mszhqjpgj19v3yxvwgi0"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-checkmate" ,r-checkmate)
+ ("r-jsonlite" ,r-jsonlite)
+ ("r-mime" ,r-mime)
+ ("r-r6" ,r-r6)
+ ("r-rcpp" ,r-rcpp)
+ ("r-rserve" ,r-rserve)
+ ("r-uuid" ,r-uuid)))
+ (native-inputs
+ `(("r-knitr" ,r-knitr)))
+ (home-page "https://restrserve.org")
+ (synopsis "R web API framework")
+ (description
+ "RestRserve is an R web API framework for building high-performance AND
+robust microservices and app backends. With Rserve backend on UNIX-like
+systems it is parallel by design. It will handle incoming requests in
+parallel - each request in a separate fork.")
+ (license license:gpl2+)))
+
(define-public r-progress
(package
(name "r-progress")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add r-restrserve.,
guix-commits <=