diff options
author | Antero Mejr <[email protected]> | 2023-06-04 17:42:35 +0000 |
---|---|---|
committer | Danny Milosavljevic <[email protected]> | 2024-12-22 13:18:07 +0100 |
commit | 30ddcc7929776135fca68835523d1f683df7454a (patch) | |
tree | 378081ad3008e11f0772e1deb36a643d9af932fa /gnu | |
parent | 58b98edb186a3626eba24ee7b8a019b31709340b (diff) |
gnu: Add perl-time-warp.
* gnu/packages/perl.scm (perl-time-warp): New variable.
Signed-off-by: Danny Milosavljevic <[email protected]>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/perl.scm | 20 |
1 files changed, 20 insertions, 0 deletions
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") |