mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: Add perl-regexp-common.
* gnu/packages/perl.scm (perl-regexp-common): New variable.
This commit is contained in:
parent
d193ba6d79
commit
b593600e21
1 changed files with 25 additions and 0 deletions
|
@ -318,3 +318,28 @@ (define-public perl-getopt-tabular
|
||||||
(home-page (string-append "http://search.cpan.org/~gward/"
|
(home-page (string-append "http://search.cpan.org/~gward/"
|
||||||
"Getopt-Tabular-" version))
|
"Getopt-Tabular-" version))
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
|
(define-public perl-regexp-common
|
||||||
|
(package
|
||||||
|
(name "perl-regexp-common")
|
||||||
|
(version "2013031301")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
|
||||||
|
"Regexp-Common-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"112wybsm0vr8yfannx6sdfvgp5vza28gjgr3pgn69ak4sac836kj"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(synopsis "Provide commonly requested regular expressions")
|
||||||
|
(description
|
||||||
|
"This module exports a single hash (`%RE') that stores or generates
|
||||||
|
commonly needed regular expressions. Patterns currently provided include:
|
||||||
|
balanced parentheses and brackets, delimited text (with escapes), integers and
|
||||||
|
floating-point numbers in any base (up to 36), comments in 44 languages,
|
||||||
|
offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
|
||||||
|
codes.")
|
||||||
|
(home-page (string-append "http://search.cpan.org/~abigail/"
|
||||||
|
"Regexp-Common-" version))
|
||||||
|
;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
|
||||||
|
(license (list (package-license perl) x11 bsd-3))))
|
||||||
|
|
Loading…
Reference in a new issue