dannym pushed a commit to branch master
in repository guix.

commit 45f9efdbd66781519b8049f7a93b3256fdb14bdc
Author: Antero Mejr <[email protected]>
AuthorDate: Sun Jun 4 17:42:47 2023 +0000

    gnu: Add perl-net-libidn.
    
    * gnu/packages/perl-web.scm (perl-net-libidn): New variable.
    
    Signed-off-by: Danny Milosavljevic <[email protected]>
---
 gnu/packages/perl-web.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/perl-web.scm b/gnu/packages/perl-web.scm
index 2ddf589be5..efbf1d2e58 100644
--- a/gnu/packages/perl-web.scm
+++ b/gnu/packages/perl-web.scm
@@ -413,3 +413,25 @@ server to connect to, and additional optional parameters.")
 the 2013 DMARC draft, intending to implement every MUST and every SHOULD.")
     (license license:perl-license)))
 
+(define-public perl-net-libidn
+  (package
+    (name "perl-net-libidn")
+    (version "0.12")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://cpan/authors/id/T/TH/THOR/Net-LibIDN-" version
+                    ".tar.gz"))
+              (sha256
+               (base32
+                "05xvpn9z7dpv62a5wgjx1n9kxblkqsgl9kb3vk3nx1mk8aacr2ig"))))
+    (build-system perl-build-system)
+    (inputs (list libidn))
+    (home-page "https://metacpan.org/release/Net-LibIDN";)
+    (synopsis "Perl bindings for GNU Libidn")
+    (description
+     "The package provides bindings for GNU Libidn, a C library for handling
+Internationalized Domain Names according to IDNA (RFC 3490), in a way very
+much inspired by Turbo Fredriksson's PHP-IDN.")
+    (license (list license:gpl1+ license:clarified-artistic))))
+

Reply via email to