guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add perl-text-format.


From: Roel Janssen
Subject: 01/01: gnu: Add perl-text-format.
Date: Wed, 4 Apr 2018 10:16:26 -0400 (EDT)

roelj pushed a commit to branch master
in repository guix.

commit f0196e82b8848e62816e815df3d3c7d89ac5edea
Author: Roel Janssen <address@hidden>
Date:   Wed Apr 4 16:15:59 2018 +0200

    gnu: Add perl-text-format.
    
    * gnu/packages/perl.scm (perl-text-format): New variable.
---
 gnu/packages/perl.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 2822774..c146874 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -8121,6 +8121,30 @@ faster than shelling out to a system's diff executable 
for small files, and
 generally slower on larger files.")
     (license (package-license perl))))
 
+(define-public perl-text-format
+  (package
+    (name "perl-text-format")
+    (version "0.60")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://cpan/authors/id/S/SH/SHLOMIF/Text-Format-"
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "1f52jak0a2gwi4qcisp4nfbniq04dmmv5j8zkvzj8ik0f0sk2kv6"))))
+    (build-system perl-build-system)
+    (native-inputs
+     `(("perl-module-build" ,perl-module-build)
+       ("perl-test-pod" ,perl-test-pod)
+       ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
+    (home-page "http://search.cpan.org/dist/Text-Format/";)
+    (synopsis "Various subroutines to format text")
+    (description "This package provides functions to format text in various
+ways like centering, paragraphing, and converting tabs to spaces and spaces
+to tabs.")
+    (license perl-license)))
+
 (define-public perl-text-glob
   (package
     (name "perl-text-glob")



reply via email to

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