guix-commits
[Top][All Lists]
Advanced

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

20/25: gnu: Add Tie-IxHash.


From: Eric Bavier
Subject: 20/25: gnu: Add Tie-IxHash.
Date: Thu, 19 Mar 2015 21:44:00 +0000

bavier pushed a commit to branch master
in repository guix.

commit 92503917f70218df6d3d3553e4fa3b85eed1a832
Author: Eric Bavier <address@hidden>
Date:   Tue Mar 17 15:19:14 2015 -0500

    gnu: Add Tie-IxHash.
    
    * gnu/packages/perl.scm (perl-tie-ixhash): New variable.
---
 gnu/packages/perl.scm |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index b694021..8fc8ff6 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -3617,6 +3617,28 @@ letters, the pronunciation expressed by the text in some 
other writing
 system.")
     (license (package-license perl))))
 
+(define-public perl-tie-ixhash
+  (package
+  (name "perl-tie-ixhash")
+  (version "1.23")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
+                          "Tie-IxHash-" version ".tar.gz"))
+      (sha256
+        (base32
+          "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
+  (build-system perl-build-system)
+  (home-page "http://search.cpan.org/dist/Tie-IxHash";)
+  (synopsis "Ordered associative arrays for Perl")
+  (description "This Perl module implements Perl hashes that preserve the
+order in which the hash elements were added. The order is not affected when
+values corresponding to existing keys in the IxHash are changed. The elements
+can also be set to any arbitrary supplied order. The familiar perl array
+operations can also be performed on the IxHash.")
+  (license (package-license perl))))
+
 (define-public perl-time-local
   (package
     (name "perl-time-local")



reply via email to

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