diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-06-14 11:22:23 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-06-14 12:19:43 +0200 |
commit | 5e44ec69d68bf9bacfd7343e6ee78b25de1733fd (patch) | |
tree | 5c893afdc27bd118e992b6d5a447b1697cd09661 /gnu/packages/perl.scm | |
parent | c158ab306710c260512b75952b591d08441b71da (diff) |
gnu: Add perl-text-haml.
* gnu/packages/perl.scm (perl-text-haml): New variable.
Diffstat (limited to 'gnu/packages/perl.scm')
-rw-r--r-- | gnu/packages/perl.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 2d4ce0eb45..b164796e99 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -9685,6 +9685,30 @@ used to match against text, rather than fetching names from a file system. If you want to do full file globbing use the File::Glob module instead.") (license (package-license perl)))) +(define-public perl-text-haml + (package + (name "perl-text-haml") + (version "0.990118") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/V/VT/VTI/" + "Text-Haml-" version ".tar.gz")) + (sha256 + (base32 "1siq8hgj7s8gwpf3n3h1is5v50rwi6av8lfb19khiyyqz0rp7a57")))) + (build-system perl-build-system) + (native-inputs + `(("perl-module-build-tiny" ,perl-module-build-tiny))) + (propagated-inputs + `(("perl-data-section-simple" ,perl-data-section-simple) + ("perl-uri" ,perl-uri))) + (home-page "https://metacpan.org/release/Text-Haml") + (synopsis "Haml Perl implementation") + (description + "Text::Haml implements Haml +@url{http://haml.info/docs/yardoc/file.REFERENCE.html} specification.") + (license artistic2.0))) + (define-public perl-text-neattemplate (package (name "perl-text-neattemplate") |