summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-02-24 22:53:47 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-24 23:26:37 +0000
commita600b82f2cffc51d207891ea72bbc82f2eb8b892 (patch)
tree54a67fd953d40765c63d7877b5626cf8c34a42d3 /gnu
parent7be2d55b3ee39d424cd21bb1bc7ba56bf9dde320 (diff)
gnu: Add go-github-com-ajstarks-svgo.
* gnu/packages/golang-xyz.scm (go-github-com-ajstarks-svgo): New variable. Change-Id: I5fe7c6ed1989e7fb3a067fc13e8c0a6d96e8963a
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm31
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 628ca4bac86..1c2ba3ecbba 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -1286,6 +1286,37 @@ system (origin at the lower left corner, x increasing left to right, 0-100%, y
increasing upwards, 0-100%).")
(license license:cc-by3.0))))
+(define-public go-github-com-ajstarks-svgo
+ (package
+ (name "go-github-com-ajstarks-svgo")
+ (version "0.0.0-20211024235047-1546f124cd8b")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ajstarks/svgo")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1h0y8c1cw49lm0f324kvgvwc24q6r64pzzzrqpfgp2wd9ljszfnd"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:skip-build? #t
+ #:tests? #f
+ #:import-path "github.com/ajstarks/svgo"))
+ (propagated-inputs
+ (list go-github-com-ajstarks-deck-generate
+ go-honnef-co-go-tools))
+ (home-page "https://github.com/ajstarks/svgo")
+ (synopsis "Go library for SVG generation")
+ (description
+ "This package implements a functionality to generate SVG as defined by
+the Scalable Vector Graphics 1.1
+Specification (@url{http://www.w3.org/TR/SVG11/}). Output goes to the
+specified @code{io.Writer}.")
+ (license license:cc-by4.0)))
+
(define-public go-github-com-akamensky-argparse
(package
(name "go-github-com-akamensky-argparse")