guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit cd728258e64be52e030c6a75fb5dbb1bba7382d4
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Wed May 28 22:38:25 2025 +0100

    gnu: Add go-github-com-aclements-go-gg.
    
    * gnu/packages/golang-maths.scm (go-github-com-aclements-go-gg): New 
variable.
    
    Change-Id: I5f248dd568cb96edba0bc070feef3d47e52a21c4
---
 gnu/packages/golang-maths.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang-maths.scm b/gnu/packages/golang-maths.scm
index f8aa245b0b..e84c1bdd88 100644
--- a/gnu/packages/golang-maths.scm
+++ b/gnu/packages/golang-maths.scm
@@ -37,6 +37,33 @@
 ;;; Libraries:
 ;;;
 
+(define-public go-github-com-aclements-go-gg
+  (package
+    (name "go-github-com-aclements-go-gg")
+    (version "0.0.0-20170323211221-abd1f791f5ee")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/aclements/go-gg";)
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "06vda3fvhyavwdcbch591v64ds8jdb1v56c8rjv8qbd6g65ky383"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:skip-build? #t
+      #:tests? #f
+      #:import-path "github.com/aclements/go-gg"))
+    (propagated-inputs
+     (list go-github-com-aclements-go-moremath))
+    (home-page "https://github.com/aclements/go-gg";)
+    (synopsis "Plotting package for Golang")
+    (description
+     "gg is a plotting package for Go inspired by the Grammar of Graphics.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-aclements-go-moremath
   (package
     (name "go-github-com-aclements-go-moremath")

Reply via email to