From d602172b6323a512cd18bc4e47411edcc06b6c76 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Wed, 27 May 2026 20:52:14 +0100 Subject: [PATCH] gnu: Add go-github-com-aio-arch-graphlib. * gnu/packages/golang-maths.scm (go-github-com-aio-arch-graphlib): New variable. Change-Id: I223b78efab70a819590ae384c40adcc3d34228e3 --- gnu/packages/golang-maths.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang-maths.scm b/gnu/packages/golang-maths.scm index f2193e37e35..8d7c1f368f1 100644 --- a/gnu/packages/golang-maths.scm +++ b/gnu/packages/golang-maths.scm @@ -41,6 +41,31 @@ ;;; Libraries: ;;; +(define-public go-github-com-aio-arch-graphlib + (package + (name "go-github-com-aio-arch-graphlib") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aio-arch/graphlib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1a69h1wlrv324wb0amagn6qyjb6cny0qhg82ivvkv0ilvvn17b6m")))) + (build-system go-build-system) + (arguments + (list + #:tests? (not (target-aarch64?)) + #:import-path "github.com/aio-arch/graphlib")) + (home-page "https://github.com/aio-arch/graphlib") + (synopsis "Topological sort lib for Sorting and pruning of DAG graphs") + (description + "This package provides a Topological sort lib. Sorting and pruning of +DAG graphs.") + (license license:expat))) + (define-public go-github-com-altree-bigfloat (package (name "go-github-com-altree-bigfloat")