diff options
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 1d1c395d8d..1f601b8f47 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -39,7 +39,7 @@ ;;; Copyright © 2022 Greg Hogan <code@greghogan.com> ;;; Copyright © 2023 Kyle Andrews <kyle@posteo.net> ;;; Copyright © 2024 Marco Baggio <guix@mawumag.com> -;;; Copyright © 2024, 2025 Spencer King <spencer.king@geneoscopy.com> +;;; Copyright © 2024, 2025 Spencer King <spencer.king@wustl.edu> ;;; Copyright © 2024-2025 Tor-björn Claesson <tclaesson@gmail.com> ;;; ;;; This file is part of GNU Guix. @@ -15563,6 +15563,30 @@ link (lines and ribbons), and text (gene) label. All functions require only R graphics packages that comes with the base installation.") (license license:gpl2+))) +(define-public r-circstats + (package + (name "r-circstats") + (version "0.2-6") + (source + (origin + (method url-fetch) + (uri (cran-uri "CircStats" version)) + (sha256 + (base32 "07bg4zrs2iqh0pmi44pybi8hlvnxwcaa5zpg85rmf55kflxxkzlf")))) + (properties `((upstream-name . "CircStats"))) + (build-system r-build-system) + (arguments + (list + #:tests? #f)) + (propagated-inputs (list r-boot r-mass)) + (home-page "https://cran.r-project.org/package=CircStats") + (synopsis + "Circular Statistics, from \"Topics in Circular Statistics\" (2001)") + (description + "Circular Statistics, from \"Topics in Circular Statistics\" (2001) S. Rao +Jammalamadaka and A. @code{SenGupta}, World Scientific.") + (license license:gpl2))) + (define-public r-ctrdata (package (name "r-ctrdata") @@ -28722,7 +28746,7 @@ package works as intended.") `((upstream-name . "gitcreds") (updater-extra-native-inputs . ("r-mockery" "r-codetools")))) (build-system r-build-system) - (inputs (list git-minimal)) + (inputs (list git-minimal/pinned)) (native-inputs (list r-codetools r-knitr r-mockery r-testthat)) (home-page "https://github.com/r-lib/gitcreds") (synopsis "Query git credentials from R") @@ -28836,7 +28860,7 @@ terminals that do not support Unicode.") ;; This is necessary because git looks for $HOME/.gitconfig (setenv "HOME" "/tmp")))))) (inputs - (list git-minimal)) + (list git-minimal/pinned)) (propagated-inputs (list r-askpass r-curl r-jsonlite r-openssl r-sys)) (native-inputs |