This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 64ef6db09b gnu: Add r-circstats.
64ef6db09b is described below

commit 64ef6db09b1e14a12fc0d97a5a0615394d6d6c7a
Author: Spencer King <[email protected]>
AuthorDate: Tue Jun 10 15:43:12 2025 -0500

    gnu: Add r-circstats.
    
    * gnu/packages/cran.scm (r-circstats): New variable.
    
    Change-Id: Ie953ac2f713c88b0f626f4e07e9dbfc6c12eb3dd
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/cran.scm | 26 +++++++++++++++++++++++++-
 1 file changed, 25 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 1d1c395d8d..f9961d8a46 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -39,7 +39,7 @@
 ;;; Copyright © 2022 Greg Hogan <[email protected]>
 ;;; Copyright © 2023 Kyle Andrews <[email protected]>
 ;;; Copyright © 2024 Marco Baggio <[email protected]>
-;;; Copyright © 2024, 2025 Spencer King <[email protected]>
+;;; Copyright © 2024, 2025 Spencer King <[email protected]>
 ;;; Copyright © 2024-2025 Tor-björn Claesson <[email protected]>
 ;;;
 ;;; 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")

Reply via email to