[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#46285] [PATCH 1/4] gnu: Add r-jquerylib.
From: |
Todor Kondić |
Subject: |
[bug#46285] [PATCH 1/4] gnu: Add r-jquerylib. |
Date: |
Thu, 4 Feb 2021 02:12:58 +0100 |
* gnu/packages/cran.scm(r-jquerylib): New variable.
---
gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 874a77c552..6f7d07140d 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -25782,3 +25782,29 @@ tuning, e.g. Grid Search, Random Search, or Simulated
Annealing. Various
termination criteria can be set and combined. The class @code{AutoTuner}
provides a
convenient way to perform nested resampling in combination with @code{mlr3}.")
(license license:lgpl3)))
+
+(define-public r-jquerylib
+ (package
+ (name "r-jquerylib")
+ (version "0.1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "jquerylib" version))
+ (sha256
+ (base32
+ "1s0d6mws13hwkx07jqmry7vp30a05b2p9w7ir68bmkhasidwkzdq"))))
+ (properties `((upstream-name . "jquerylib")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-htmltools" ,r-htmltools)))
+ (home-page
+ "https://cran.r-project.org/package=jquerylib")
+ (synopsis
+ "Obtain @code{jQuery} as an HTML Dependency Object")
+ (description
+ "Obtain any major version of @code{jQuery}
+@url{https://code.jquery.com,jQuery} and use it in any webpage
+generated by @code{htmltools}. Most R users do not need to use this
+package directly.")
+ (license license:expat)))
--
2.30.0
- [bug#46285] [PATCH 1/4] gnu: Add r-jquerylib.,
Todor Kondić <=