gnu: Add perl-regexp-util.

* gnu/packages/perl.scm (perl-regexp-util): New variable.
master
Ricardo Wurmus 2017-08-09 19:00:33 +02:00 committed by Ricardo Wurmus
parent 413dd21084
commit 44d37e43fe
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 21 additions and 0 deletions

View File

@ -5701,6 +5701,27 @@ codes.")
;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
(license (list (package-license perl) x11 bsd-3))))
(define-public perl-regexp-util
(package
(name "perl-regexp-util")
(version "0.003")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
"Regexp-Util-" version ".tar.gz"))
(sha256
(base32
"01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
(build-system perl-build-system)
(home-page "http://search.cpan.org/dist/Regexp-Util")
(synopsis "Selection of general-utility regexp subroutines")
(description "This package provides a selection of regular expression
subroutines including @code{is_regexp}, @code{regexp_seen_evals},
@code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
and @code{deserialize_regexp}.")
(license (package-license perl))))
(define-public perl-role-tiny
(package
(name "perl-role-tiny")