From 40ce942de6c5eb23adab8da0ae93a372d9880353 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 30 Nov 2025 22:35:08 +0000 Subject: [PATCH] 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 470ca019a61472810ca24abe32b50422fd914931..6809abe95e525e0a53840d863be2c0c192f98d80 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")