ngz pushed a commit to branch master in repository guix. commit c3adc11060da2a665f0d82f8eee6c8216194fa1f Author: Bruno Victal <mi...@makinata.eu> AuthorDate: Tue Oct 24 16:15:35 2023 +0100
gnu: Add perl-regexp-pattern-defhash. * gnu/packages/perl.scm (perl-regexp-pattern-defhash): New variable. Signed-off-by: Nicolas Goaziou <m...@nicolasgoaziou.fr> --- gnu/packages/perl.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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")