diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2016-07-12 15:13:26 +1000 |
---|---|---|
committer | Ben Woodcroft <donttrustben@gmail.com> | 2016-08-08 22:08:17 +1000 |
commit | 5e2b27b045292250c8fc22fd4c188003d3eaffcf (patch) | |
tree | 68fccb0c32bc92650bde40035f057fe36b6cac44 /gnu/packages/perl.scm | |
parent | 176345c5b2455a7c9e31996fcc9b505fe1fe4e6e (diff) | |
download | patches-5e2b27b045292250c8fc22fd4c188003d3eaffcf.tar patches-5e2b27b045292250c8fc22fd4c188003d3eaffcf.tar.gz |
gnu: Add perl-parse-yapp.
* gnu/packages/perl.scm (perl-parse-yapp): New variable.
Diffstat (limited to 'gnu/packages/perl.scm')
-rw-r--r-- | gnu/packages/perl.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 032ea5e439..5df8281cd7 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -6588,6 +6588,27 @@ YAML-style files, written with as little code as possible, reducing load time and memory overhead.") (license (package-license perl)))) +(define-public perl-parse-yapp + (package + (name "perl-parse-yapp") + (version "1.05") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/F/FD/FDESAR/Parse-Yapp-" + version + ".tar.gz")) + (sha256 + (base32 + "0azjqqf4m7nkfgmmj4q77vy9sdgg01wn8xxv40bq3pis93xnr2i2")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Parse-Yapp") + (synopsis "Generate and use LALR parsers") + (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR) +grammars to generate Perl object oriented parser modules.") + (license (package-license perl)))) + ;;; Some packaged modules need versions of core modules that are newer than ;;; those in our perl 5.16.1. |