guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 40ce942de6c5eb23adab8da0ae93a372d9880353
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Nov 30 22:35:08 2025 +0000
gnu: Add go-github-com-heimdalr-dag.
* gnu/packages/golang-xyz.scm (go-github-com-heimdalr-dag): New variable.
Change-Id: Ifc66cf303b72caca47693af5e9521cf1f7216940
---
gnu/packages/golang-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 470ca019a6..6809abe95e 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -10936,6 +10936,34 @@ Algorithms are included to calculate yahrzeits,
birthdays, and
anniversaries.")
(license license:gpl2+)))
+(define-public go-github-com-heimdalr-dag
+ (package
+ (name "go-github-com-heimdalr-dag")
+ (version "1.5.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/heimdalr/dag")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "13hvdhld450bylhhfhnr8bjwbhjgdf3v6n64yxdic0lzi0b93ajb"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/heimdalr/dag"))
+ (native-inputs
+ (list go-github-com-go-test-deep))
+ (propagated-inputs
+ (list go-github-com-emirpasic-gods
+ go-github-com-google-uuid))
+ (home-page "https://github.com/heimdalr/dag")
+ (synopsis "Directed acyclic graph (DAG) implementation in Golang")
+ (description
+ "This package implements directed acyclic graphs (DAGs).")
+ (license license:bsd-3)))
+
(define-public go-github-com-hhrutter-tiff
(package
(name "go-github-com-hhrutter-tiff")