3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add r-varhandle.

* gnu/packages/cran.scm (r-varhandle): New variable.
This commit is contained in:
Ricardo Wurmus 2022-01-04 17:10:15 +01:00
parent 48c2983d95
commit b9c5dff57f
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2015, 2016 Pjotr Prins <pjotr.guix@thebird.nl>
;;; Copyright © 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
@ -31600,6 +31600,27 @@ data. This package provides functions that query the BIEN database by
constructing and executing optimized SQL queries.")
(license license:expat)))
(define-public r-varhandle
(package
(name "r-varhandle")
(version "2.0.5")
(source
(origin
(method url-fetch)
(uri (cran-uri "varhandle" version))
(sha256
(base32 "1l42d0s6fbjjc9l28a2m3myxkrx2c0p0b9yj8wjjjgilw19yc3lv"))))
(properties `((upstream-name . "varhandle")))
(build-system r-build-system)
(home-page "https://bitbucket.org/mehrad_mahmoudian/varhandle")
(synopsis "Functions for robust variable handling")
(description
"This package contains some functions to help users (especially data
explorers) to make more sense of their variables and take the most out of
variables and hardware resources. Functions in this package are supposed to
be efficient and easy to use.")
(license license:gpl2+)))
(define-public r-ggh4x
(package
(name "r-ggh4x")