guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/143: gnu: Add r-clock.


From: guix-commits
Subject: 01/143: gnu: Add r-clock.
Date: Tue, 29 Nov 2022 13:29:04 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 90be4f8319c0a3f5a1407a752eff1ec3487728ab
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Nov 29 15:04:33 2022 +0100

    gnu: Add r-clock.
    
    * gnu/packages/cran.scm (r-clock): New variable.
---
 gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ad0657ef3b..af3327ae9b 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -1076,6 +1076,32 @@ size and can be easily tested locally before being sent 
to a remote.")
 the system clipboards.")
     (license license:gpl3)))
 
+(define-public r-clock
+  (package
+    (name "r-clock")
+    (version "0.6.1")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "clock" version))
+              (sha256
+               (base32
+                "00hp7k24d599dzkzhhb6xky2pj6xaggdfwgviyb3i592v1gkh37q"))))
+    (properties `((upstream-name . "clock")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-cpp11 r-rlang r-tzdb r-vctrs))
+    (native-inputs (list r-knitr))
+    (home-page "https://clock.r-lib.org";)
+    (synopsis "Date-Time types and tools")
+    (description
+     "This package provides a comprehensive library for date-time
+manipulations using a new family of orthogonal date-time
+classes (durations, time points, zoned-times, and calendars) that
+partition responsibilities so that the complexities of time zones are
+only considered when they are really needed.  Capabilities include:
+date-time parsing, formatting, arithmetic, extraction and updating of
+components, and rounding.")
+    (license license:expat)))
+
 (define-public r-clvalid
   (package
     (name "r-clvalid")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]