blob: aa710ce1b99b0265e6c2dfa0607accabf4fc8669 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
(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)
|