summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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")