diff options
author | Roel Janssen <roel@gnu.org> | 2018-04-03 14:31:57 +0200 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2018-04-03 14:31:57 +0200 |
commit | 9b3deccd60b4ad896632e15978f6b9bf59399483 (patch) | |
tree | ac17b71d9dfcf11e1dc4494be105166c63280ba8 | |
parent | 6d09a7b5ecf01733b4cffb9d03fe08ad3c81d659 (diff) | |
download | guix-9b3deccd60b4ad896632e15978f6b9bf59399483.tar.gz |
gnu: Add perl-pegex.
* gnu/packages/perl.scm (perl-pegex): New variable.
-rw-r--r-- | gnu/packages/perl.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 479776126b..022cd7e884 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -6622,6 +6622,33 @@ PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input for correctness.") (license (package-license perl)))) +(define-public perl-pegex + (package + (name "perl-pegex") + (version "0.64") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/I/IN/INGY/Pegex-" + version ".tar.gz")) + (sha256 + (base32 + "1kb7y2cc3nibbn8i8y3vrzz1f9h3892nbf8jj88c5fdgpmj05q17")))) + (build-system perl-build-system) + (native-inputs + `(("perl-file-sharedir-install" ,perl-file-sharedir-install) + ("perl-yaml-libyaml" ,perl-yaml-libyaml))) + (home-page "http://search.cpan.org/dist/Pegex/") + (synopsis "Acmeist PEG Parser Framework") + (description "Pegex is an Acmeist parser framework. It allows you to easily +create parsers that will work equivalently in lots of programming languages. +The inspiration for Pegex comes from the parsing engine upon which the +postmodern programming language Perl 6 is based on. Pegex brings this beauty +to the other justmodern languages that have a normal regular expression engine +available.") + (license (package-license perl)))) + (define-public perl-pod-coverage (package (name "perl-pod-coverage") |