guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/16: gnu: Add perl-net-patricia.


From: Leo Famulari
Subject: 05/16: gnu: Add perl-net-patricia.
Date: Tue, 9 Aug 2016 02:37:01 +0000 (UTC)

lfam pushed a commit to branch master
in repository guix.

commit 3ed361ea0973e3622a2aba5b920d02166f62248e
Author: Danny Milosavljevic <address@hidden>
Date:   Thu Jul 28 23:38:22 2016 +0200

    gnu: Add perl-net-patricia.
    
    * gnu/packages/networking.scm (perl-net-patricia): Add variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/networking.scm |   28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 271f848..004e76f 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -531,3 +531,31 @@ offline emulation of DNS.")
     "Manages IPv4 and IPv6 addresses and subnets")
   (description "NetAddr::IP manages IPv4 and IPv6 addresses and subsets.")
   (license (package-license perl))))
+
+(define-public perl-net-patricia
+ (package
+  (name "perl-net-patricia")
+  (version "1.22")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (string-append
+             "mirror://cpan/authors/id/G/GR/GRUBER/Net-Patricia-"
+             version
+             ".tar.gz"))
+      (sha256
+        (base32
+          "0ln5f57vc8388kyh9vhx2infrdzfhbpgyby74h1qsnhwds95m0vh"))))
+  (build-system perl-build-system)
+  (inputs
+    `(("perl-net-cidr-lite" ,perl-net-cidr-lite)
+      ("perl-socket6" ,perl-socket6)))
+  (home-page
+    "http://search.cpan.org/dist/Net-Patricia";)
+  (synopsis
+    "Patricia Trie Perl module for fast IP address lookups")
+  (description
+    "Net::Patricia does IP address lookups quickly in Perl.")
+  ;; The bindings are licensed under GPL2 or later.
+  ;; libpatricia is licensed under 2-clause BSD.
+  (license (list license:gpl2+ license:bsd-2))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]