guix-commits
[Top][All Lists]
Advanced

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

09/16: gnu: Add perl-encode-detect.


From: Leo Famulari
Subject: 09/16: gnu: Add perl-encode-detect.
Date: Tue, 9 Aug 2016 02:37:02 +0000 (UTC)

lfam pushed a commit to branch master
in repository guix.

commit 22414177cdca7c4967a454a1c68caab57e3f88ba
Author: Danny Milosavljevic <address@hidden>
Date:   Thu Jul 28 23:38:26 2016 +0200

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

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 17a596f..aef92f4 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -7023,3 +7023,27 @@ interface to File::Find::Object.")
   (description "Test::TrailingSpace tests for trailing spaces
 in Perl source files.")
   (license x11)))
+
+(define-public perl-encode-detect
+ (package
+  (name "perl-encode-detect")
+  (version "1.01")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (string-append
+             "mirror://cpan/authors/id/J/JG/JGMYERS/Encode-Detect-"
+             version
+             ".tar.gz"))
+      (sha256
+        (base32
+          "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
+  (build-system perl-build-system)
+  (inputs
+    `(("perl-module-build" ,perl-module-build)))
+  (home-page
+    "http://search.cpan.org/dist/Encode-Detect";)
+  (synopsis
+    "Perl Encode::Encoding subclass that detects the encoding of data")
+  (description "Encode::Detect detects the encoding of data for Perl.")
+  (license mpl1.1)))



reply via email to

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