guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#42080] [PATCH 3/4] gnu: Add r-wdman.


From: Peter Lo
Subject: [bug#42080] [PATCH 3/4] gnu: Add r-wdman.
Date: Sat, 27 Jun 2020 19:48:22 +0800

* gnu/packages/cran.scm (r-wdman): New variable.
---
 gnu/packages/cran.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 88e84d5866..e2eb06b5db 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -22383,3 +22383,38 @@ Binary repositories are defined in 'YAML' format.  
Defining new
 pre-download, download and post-download templates allow additional
 repositories to be added.")
     (license license:expat)))
+
+(define-public r-wdman
+  (package
+    (name "r-wdman")
+    (version "0.2.5")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "wdman" version))
+        (sha256
+          (base32
+            "1yf41lsrr9dbf5n4f5hv9mlmzl736fhnp9gxkm2g9apws6gsig02"))))
+    (properties `((upstream-name . "wdman")))
+    (build-system r-build-system)
+    (propagated-inputs
+      `(("r-assertthat" ,r-assertthat)
+        ("r-binman" ,r-binman)
+        ("r-processx" ,r-processx)
+        ("r-semver" ,r-semver)
+        ("r-yaml" ,r-yaml)))
+    (native-inputs `(("r-knitr" ,r-knitr)))
+    (home-page "https://docs.ropensci.org/wdman";)
+    (synopsis
+      "'Webdriver'/'Selenium' Binary Manager")
+    (description
+      "There are a number of binary files associated with the
+'Webdriver'/'Selenium' project (see
+<http://www.seleniumhq.org/download/>,
+<https://sites.google.com/a/chromium.org/chromedriver/>,
+<https://github.com/mozilla/geckodriver>,
+<http://phantomjs.org/download.html> and
+<https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver>
+for more information).  This package provides functions to download
+these binaries and to manage processes involving them.")
+    (license license:expat)))
-- 
2.17.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]