diff options
| author | Spencer King <spencer.king@wustl.edu> | 2025-06-10 15:43:12 -0500 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-08-21 16:36:22 +0200 |
| commit | 64ef6db09b1e14a12fc0d97a5a0615394d6d6c7a (patch) | |
| tree | cc8258cdb1318566925a1d83f50c265fa117e4fa | |
| parent | d349f946d04620c8fab79756b6f147c19e402ead (diff) | |
gnu: Add r-circstats.
* gnu/packages/cran.scm (r-circstats): New variable.
Change-Id: Ie953ac2f713c88b0f626f4e07e9dbfc6c12eb3dd
Signed-off-by: Andreas Enge <andreas@enge.fr>
| -rw-r--r-- | gnu/packages/cran.scm | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 1d1c395d8db..f9961d8a464 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") |
