dannym pushed a commit to branch master
in repository guix.

commit 30ddcc7929776135fca68835523d1f683df7454a
Author: Antero Mejr <[email protected]>
AuthorDate: Sun Jun 4 17:42:35 2023 +0000

    gnu: Add perl-time-warp.
    
    * gnu/packages/perl.scm (perl-time-warp): New variable.
    
    Signed-off-by: Danny Milosavljevic <[email protected]>
---
 gnu/packages/perl.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index f46f743606..9ba57bccfa 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -12340,6 +12340,26 @@ time values and formatting dates into ASCII strings.")
 and time() calls.")
     (license (package-license perl))))
 
+(define-public perl-time-warp
+  (package
+    (name "perl-time-warp")
+    (version "0.55")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://cpan/authors/id/M/MA/MANWAR/Time-Warp-" version
+                    ".tar.gz"))
+              (sha256
+               (base32
+                "1a7g3i9nad7m2qvwl7bssnq083s2nsdnzxq42k2x6j8bimfgm8sc"))))
+    (build-system perl-build-system)
+    (home-page "https://metacpan.org/release/Time-Warp";)
+    (synopsis "Control over the measurement of time")
+    (description
+     "The @code{Time::Warp} module offers developers control over the
+measurement of time.")
+    (license license:perl-license)))
+
 (define-public perl-tree-simple
   (package
     (name "perl-tree-simple")

Reply via email to