From 3fd0aeaac35b483ae2fe8f5851310f889632e83e Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Sun, 9 Nov 2025 15:11:25 -0500 Subject: [PATCH] gnu: Add perl-hash-moreutils * gnu/packages/perl.scm (perl-hash-moreutils): New variable. Change-Id: Id112e52e247cbc655a996da3bd4825aa8648177c Signed-off-by: Liliana Marie Prikler --- gnu/packages/perl.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index e9041b718db0235c4142505333f2876605980eaf..5c2de4894cdc9d3948e910813c30f35c4ece97a7 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -4838,6 +4838,27 @@ input a message of arbitrary length and produces as output a 32-bit \"message digest\" of the input in the form of an unsigned long integer.") (license license:artistic2.0))) +(define-public perl-hash-moreutils + (package + (name "perl-hash-moreutils") + (version "0.06") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/R/RE/REHSACK/Hash-MoreUtils-" version + ".tar.gz")) + (sha256 + (base32 "1s3xaj1hh312nwf74fwvikhbalan0xa5x6l8h31m61ymcyw8z6nv")))) + (build-system perl-build-system) + (home-page "https://metacpan.org/release/Hash-MoreUtils") + (synopsis "Provide the stuff missing in Hash::Util") + (description + "Similar to List::MoreUtils, Hash::MoreUtils contains trivial but commonly-used +functionality for hashes. The primary focus for the moment is providing a +common API - speeding up by XS is far away at the moment.") + (license license:perl-license))) + (define-public perl-eval-closure (package (name "perl-eval-closure")