gnu: perl6-svg-plot: Perl -> Raku.

* gnu/packages/perl6.scm (perl6-svg-plot)[source]: Reindent.
[synopsis, description]: Replace mentions of Perl with Raku.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Paul A. Patience 2022-04-29 05:19:19 +00:00 committed by Efraim Flashner
parent 442fbb6fdd
commit 834a1c9b86
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 11 additions and 12 deletions

View File

@ -664,28 +664,27 @@ identify an XML file as SVG.")
(license license:artistic2.0)))) (license license:artistic2.0))))
(define-public perl6-svg-plot (define-public perl6-svg-plot
;; Latest commit ;; Latest commit.
(let ((commit "062570a78fd38c3c6baba29dfe2fbb8ca014f4de") (let ((commit "062570a78fd38c3c6baba29dfe2fbb8ca014f4de")
(revision "1")) (revision "1"))
(package (package
(name "perl6-svg-plot") (name "perl6-svg-plot")
(version (git-version "0.0.0" revision commit)) (version (git-version "0.0.0" revision commit))
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/moritz/svg-plot") (url "https://github.com/moritz/svg-plot")
(commit commit))) (commit commit)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "095ga5hbg92jnmczxvhk1hjz14yr334zyf8cph4w5w5frcza44my"))))
"095ga5hbg92jnmczxvhk1hjz14yr334zyf8cph4w5w5frcza44my"))))
(build-system rakudo-build-system) (build-system rakudo-build-system)
(propagated-inputs (propagated-inputs
(list perl6-svg)) (list perl6-svg))
(home-page "https://github.com/moritz/svg-plot") (home-page "https://github.com/moritz/svg-plot")
(synopsis "Perl 6 charting and plotting library that produces SVG output") (synopsis "Raku charting and plotting library that produces SVG output")
(description "@code{SVG::Plot} is a simple 2D chart plotter for Perl 6. (description "@code{SVG::Plot} is a simple 2D chart plotter for Raku.
It currently supports bars, stacked bars, lines and points (both equally spaced It currently supports bars, stacked bars, lines and points (both equally spaced
with optional labels, or xy plots).") with optional labels, or xy plots).")
(license license:artistic2.0)))) (license license:artistic2.0))))