(define-module (xyz euandreh rg) #:use-module (gnu packages perl) #:use-module (guix build-system perl) #:use-module (guix download) #:use-module (guix licenses) #:use-module (guix packages)) (define-public perl-regexp-grammars (package (name "perl-regexp-grammars") (version "1.057") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/D/DC/DCONWAY/Regexp-Grammars-" version ".tar.gz")) (sha256 (base32 "0hbh2yn39mg6ljg8srcgpz2fsqxlzpgljz5mmq0xf72632cc2lxg")))) (build-system perl-build-system) (native-inputs (list perl-module-build)) (home-page "https://metacpan.org/release/Regexp-Grammars") (synopsis "Add grammatical parsing features to Perl 5.10 regexes") (description "") (license perl-license))) (list perl-regexp-grammars)