diff options
author | Bruno Victal <mirai@makinata.eu> | 2023-10-24 16:15:35 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2025-02-23 21:29:14 +0100 |
commit | c3adc11060da2a665f0d82f8eee6c8216194fa1f (patch) | |
tree | 6c26d7bf64f57188271160f7eab28205687f4bc8 | |
parent | 15f663686c1326e62fa27569ff9c038042c8c449 (diff) | |
download | guix-c3adc11060da2a665f0d82f8eee6c8216194fa1f.tar.gz guix-c3adc11060da2a665f0d82f8eee6c8216194fa1f.zip |
gnu: Add perl-regexp-pattern-defhash.
* gnu/packages/perl.scm (perl-regexp-pattern-defhash): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/perl.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index ba8bb3481a..ad40768b1d 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -10086,6 +10086,25 @@ complex, nested and recursive structures, and allows you to parse and extract hierarchical data from it.") (license license:perl-license))) +(define-public perl-regexp-pattern-defhash + (package + (name "perl-regexp-pattern-defhash") + (version "0.001") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/P/PE/PERLANCAR/Regexp-Pattern-DefHash-" + version ".tar.gz")) + (sha256 + (base32 + "1737hli8sn08rnbfckq0a7pfd8a1ihb6mnp34rlq2j8fkqldcrcq")))) + (build-system perl-build-system) + (home-page "https://metacpan.org/release/Regexp-Pattern-DefHash") + (synopsis "Regexp patterns related to DefHash") + (description "Regexp patterns related to DefHash, a convention to define +things more precisely and uniformly using a hash.") + (license (package-license perl)))) + (define-public perl-regexp-util (package (name "perl-regexp-util") |