1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add perl-digest-jhash.

* gnu/packages/perl.scm (perl-digest-jhash): New variable.

Change-Id: I2d43ede680aa791fbaee9494ad2dafe88bcc58aa
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Patrick Norton
2025-11-09 15:08:07 -05:00
committed by Liliana Marie Prikler
parent e49205c8ee
commit c4e9f2c3eb

View File

@@ -4816,6 +4816,28 @@ variables when computing the count.")
module, to keep track of the number of tests in a test file.")
(license license:x11)))
(define-public perl-digest-jhash
(package
(name "perl-digest-jhash")
(version "0.10")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/S/SH/SHLOMIF/Digest-JHash-" version
".tar.gz"))
(sha256
(base32 "0qq07gp9dcq9hkyvn37r1id5kiyh51vlvm9w4s84000shq5cyin7"))))
(build-system perl-build-system)
(home-page "https://metacpan.org/release/Digest-JHash")
(synopsis "Perl extension for 32 bit Jenkins Hashing Algorithm")
(description
"The Digest::JHash module allows you to use the fast JHash hashing algorithm
developed by Bob Jenkins from within Perl programs. The algorithm takes as
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-eval-closure
(package
(name "perl-eval-closure")