guix-commits
[Top][All Lists]
Advanced

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

13/20: gnu: Add Text-CSV.


From: Eric Bavier
Subject: 13/20: gnu: Add Text-CSV.
Date: Sat, 04 Apr 2015 05:51:55 +0000

bavier pushed a commit to branch master
in repository guix.

commit bc834d733900c9f0fa6c64630540075fd1d4bfeb
Author: Eric Bavier <address@hidden>
Date:   Fri Apr 3 14:14:39 2015 -0500

    gnu: Add Text-CSV.
    
    * gnu/packages/perl.scm (perl-text-csv): New variable.
---
 gnu/packages/perl.scm |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index fe6c232..8aee516 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -4172,6 +4172,26 @@ generation of tests in nested combinations of contexts.")
 text sequences from strings.")
     (license (package-license perl))))
 
+(define-public perl-text-csv
+  (package
+    (name "perl-text-csv")
+    (version "1.33")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
+                           "Text-CSV-" version ".tar.gz"))
+       (sha256
+        (base32
+         "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"))))
+    (build-system perl-build-system)
+    (home-page "http://search.cpan.org/dist/Text-CSV";)
+    (synopsis "Manipulate comma-separated values")
+    (description "Text::CSV provides facilities for the composition and
+decomposition of comma-separated values.  An instance of the Text::CSV class
+can combine fields into a CSV string and parse a CSV string into fields.")
+    (license (package-license perl))))
+
 (define-public perl-text-diff
   (package
     (name "perl-text-diff")



reply via email to

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