diff options
author | Paul A. Patience <paul@apatience.com> | 2022-04-29 05:19:16 +0000 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-03-04 10:41:58 +0200 |
commit | 442fbb6fddaa78a55e2bec1842eacbb89009274d (patch) | |
tree | 8f23af808d68e8cb41653e668ddc67a56fa2b9aa /gnu/packages | |
parent | ff64d8f46f2c31ea0348c617e0754028e4b911ed (diff) | |
download | guix-442fbb6fddaa78a55e2bec1842eacbb89009274d.tar.gz guix-442fbb6fddaa78a55e2bec1842eacbb89009274d.zip |
gnu: perl6-svg: Perl -> Raku.
* gnu/packages/perl6.scm (perl6-svg)[source]: Reindent.
[synopsis, description]: Replace mentions of Perl with Raku.
Fix minor stylistic issues.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/perl6.scm | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/gnu/packages/perl6.scm b/gnu/packages/perl6.scm index 05b88c450a..20f02e57be 100644 --- a/gnu/packages/perl6.scm +++ b/gnu/packages/perl6.scm @@ -637,31 +637,30 @@ monitor. Condition variables are also supported.") (license license:artistic2.0))) (define-public perl6-svg - ;; Latest commit, basically unchanged since August 2015 + ;; Latest commit, basically unchanged since August 2015. (let ((commit "07190c0602aa276e5319f06aa0012452dbff3582") (revision "1")) (package (name "perl6-svg") (version (git-version "0.0.0" revision commit)) (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/moritz/svg") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0mkjdhg7ajksdn61n8fqhyzfd7ly9myazsvpsm02a5c2q73hdygg")))) + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moritz/svg") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0mkjdhg7ajksdn61n8fqhyzfd7ly9myazsvpsm02a5c2q73hdygg")))) (build-system rakudo-build-system) (propagated-inputs (list perl6-xml-writer)) (home-page "https://github.com/moritz/svg") - (synopsis "Perl 6 module to generate SVG") - (description "This is a Perl 6 module that makes it easy to write + (synopsis "Raku module to generate SVG") + (description "This is a Raku module that makes it easy to write @dfn{Scalable Vector Graphic files} (SVG). Right now it is a shallow wrapper -around @code{XML::Writer}, adding only the xmlns attributes that identifies an -XML file as SVG.") +around @code{XML::Writer}, adding only the @samp{xmlns} attributes that +identify an XML file as SVG.") (license license:artistic2.0)))) (define-public perl6-svg-plot |