summaryrefslogtreecommitdiff
path: root/gnu/packages/golang-maths.scm
diff options
context:
space:
mode:
authorOrahcio FelĂ­cio de Sousa <orahcio@gmail.com>2026-08-26 21:15:36 -0300
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-09-01 22:50:37 +0100
commit4977de8b3c1d67c69a5a4ed8859c852d47019118 (patch)
tree6a646a36efc10666c00652127b26a97530c42dee /gnu/packages/golang-maths.scm
parentcf3bf7c54ad216090ee64283a62180456996cfcc (diff)
gnu: Add go-github-com-hmdsefi-gograph.
* gnu/packages/golang-maths.scm (go-github-com-hmdsefi-gograph): New variable. Merge: guix/guix!10860 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/golang-maths.scm')
-rw-r--r--gnu/packages/golang-maths.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-maths.scm b/gnu/packages/golang-maths.scm
index 71d3e3c6e52..96e52e2da0a 100644
--- a/gnu/packages/golang-maths.scm
+++ b/gnu/packages/golang-maths.scm
@@ -370,6 +370,32 @@ units can be created by multiplying by const values and variables can be
370converted by casting.") 370converted by casting.")
371 (license license:asl2.0))) 371 (license license:asl2.0)))
372 372
373(define-public go-github-com-hmdsefi-gograph
374 (package
375 (name "go-github-com-hmdsefi-gograph")
376 (version "0.7.1")
377 (source
378 (origin
379 (method git-fetch)
380 (uri (git-reference
381 (url "https://github.com/hmdsefi/gograph")
382 (commit (string-append "v" version))))
383 (file-name (git-file-name name version))
384 (sha256
385 (base32 "02qjjlc11kpxvs2i66iciv2yd4k30lsid6i5fq63fdl0sgy7rkda"))))
386 (build-system go-build-system)
387 (arguments
388 (list
389 #:import-path "github.com/hmdsefi/gograph"))
390 (home-page "https://github.com/hmdsefi/gograph")
391 (synopsis "Golang generic graph library")
392 (description
393 "@code{GoGraph} is a lightweight, efficient, and easy-to-use graph data
394structure implementation written in Go. It provides a versatile framework for
395representing graphs and performing various operations on them, making it ideal
396for both educational purposes and practical applications.")
397 (license license:asl2.0)))
398
373(define-public go-github-com-johncgriffin-overflow 399(define-public go-github-com-johncgriffin-overflow
374 (package 400 (package
375 (name "go-github-com-johncgriffin-overflow") 401 (name "go-github-com-johncgriffin-overflow")