guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 4031b50539b066bf3478fcf234d9799dff3b50c2
Author: Steve George <[email protected]>
AuthorDate: Thu May 8 16:03:04 2025 +0100

    gnu: Add perl-io-zlib.
    
    * gnu/packages/perl-compression.scm (perl-io.zlib): New variable.
    
    Change-Id: I7ffbd94f1e95883adacd59c881d221d20e9184ce
    Signed-off-by: Steve George <[email protected]>
---
 gnu/packages/perl-compression.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/perl-compression.scm 
b/gnu/packages/perl-compression.scm
index 97fa316e9f..8b7eb0aa5e 100644
--- a/gnu/packages/perl-compression.scm
+++ b/gnu/packages/perl-compression.scm
@@ -129,6 +129,27 @@ interface to the zlib compression library.")
 reading and writing compressed data created with the zlib and bzip2 
libraries.")
     (license license:perl-license)))
 
+(define-public perl-io-zlib
+  (package
+    (name "perl-io-zlib")
+    (version "1.15")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/T/TO/TOMHUGHES/"
+                           "IO-Zlib-" version ".tar.gz"))
+       (sha256
+        (base32
+          "0cpzxcr5ir3iqw5k8gq39as8kxy5hds3w6k8ckykzk1p5rwqgn3s"))))
+    (build-system perl-build-system)
+    (propagated-inputs
+     (list perl-compress-raw-zlib))
+    (home-page "https://metacpan.org/dist/IO-Zlib";)
+    (synopsis "Perl IO style interface to @code{Compress:Zlib}")
+    (description "The @code{IO::Zlib} module is a Perl IO style interface
+to @code{Compress:Zlib} that simplifies reading and writing compressed data.")
+    (license license:perl-license)))
+
 (define-public perl-perlio-gzip
   (package
     (name "perl-perlio-gzip")

Reply via email to