diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-03-16 09:36:23 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2026-04-02 07:37:10 +0200 |
| commit | c032ae1eb6eae16d22b24c3c010c5c6450929d98 (patch) | |
| tree | 0110f5be6e13df03227fb08a18221f06dde68e11 /gnu | |
| parent | 1bac2be5e3da96f42ab3e86dcc8fc4e48bb38d29 (diff) | |
gnu: Add r-pingr.
* gnu/packages/cran.scm (r-pingr): New variable.
Change-Id: I02c64e0b92a88f492cae0dbd9f3b4abb1f42e353
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/cran.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 0196dae1c94..1d818fc9f01 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6037,6 +6037,33 @@ of blocks (groups of samples). @code{permute} also allows split-plot designs, in which the whole-plots or split-plots or both can be freely exchangeable.") (license license:gpl2+))) +(define-public r-pingr + (package + (name "r-pingr") + (version "2.0.5") + (source + (origin + (method url-fetch) + (uri (cran-uri "pingr" version)) + (sha256 + (base32 "152zffi2bg5yyjbk7h83fdn1n6ab24m14d69qb2xhs4bydjad2r1")))) + (properties `((upstream-name . "pingr"))) + (build-system r-build-system) + (arguments + (list + #:skipped-tests + ;; In the build container you can't ping anything. + '(("test-icmp.R" "We can ping localhost" "We can ping a remote host") + ("test-tcp.R" "We can ping a remote host")))) + (propagated-inputs (list r-processx)) + (native-inputs (list r-testthat)) + (home-page "https://r-lib.github.io/pingr/") + (synopsis "Check if a remote computer is up") + (description + "Check if a remote computer is up. It can either just call the system +@command{ping} command, or check a specified TCP port.") + (license license:expat))) + (define-public r-pkgconfig (package (name "r-pkgconfig") |
