rekado pushed a commit to branch master in repository guix. commit 960584a07d7cca0c6eae923daf03f424cf752278 Author: Ricardo Wurmus <rek...@elephly.net> AuthorDate: Tue May 13 10:18:58 2025 +0200
gnu: Add r-getip. * gnu/packages/cran.scm (r-getip): New variable. Change-Id: Ibfa5b802b8377f0c3775c457e964186faabda73d --- gnu/packages/cran.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 6bf44185c8..b6438aa630 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -13929,6 +13929,27 @@ applications. That is, compute distances and related measures for angular (longitude/latitude) locations.") (license license:gpl3+))) +(define-public r-getip + (package + (name "r-getip") + (version "0.1-4") + (source + (origin + (method url-fetch) + (uri (cran-uri "getip" version)) + (sha256 + (base32 "0qyld6sy1i7kmbvcyg3vdv31qdyj81n54v6gvknb7nrqwwl8bgv3")))) + (properties `((upstream-name . "getip"))) + (build-system r-build-system) + (arguments (list #:tests? #false)) ;tests net networking + (home-page "https://cran.r-project.org/package=getip") + (synopsis "IP address lookup") + (description + "This package is a micro-package for getting your IP address, +either the local/internal or the public/external one. Currently only IPv4 +addresses are supported.") + (license license:bsd-2))) + (define-public r-jpeg (package (name "r-jpeg")