gnu: Add perl-data-messagepack.

* gnu/packages/perl.scm (perl-data-messagepack): New variable.

Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
This commit is contained in:
Antero Mejr 2023-06-04 17:42:11 +00:00 committed by Danny Milosavljevic
parent 376f64c116
commit bb933d19d4
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -2863,6 +2863,31 @@ constants describing the native integer type. Both signed and
unsigned representations are handled.")
(license license:perl-license)))
(define-public perl-data-messagepack
(package
(name "perl-data-messagepack")
(version "1.02")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/S/SY/SYOHEX/Data-MessagePack-"
version ".tar.gz"))
(sha256
(base32
"1dxih8s9a5rd0vg0nd9i0gb0m5zyvxw26bl88x0jb3daj13v8gf3"))))
(build-system perl-build-system)
(native-inputs (list perl-module-build
perl-module-build-xsutil
perl-test-requires))
(home-page "https://metacpan.org/release/Data-MessagePack")
(synopsis "MessagePack serializing/deserializing")
(description
"This module converts Perl data structures to MessagePack and vice versa.
MessagePack is a binary-based efficient object serialization format. It
enables to exchange structured objects between many languages like JSON. But
unlike JSON, it is very fast and small.")
(license license:perl-license)))
(define-public perl-data-uniqid
(package
(name "perl-data-uniqid")