From 7bdadfa7204c6d64a8d69ac658c27fefdbede010 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 25 Jun 2026 22:46:08 +0100 Subject: gnu: Add go-github-com-6543-go-version. * gnu/packages/golang-xyz.scm (go-github-com-6543-go-version): New variable. Relates-to: guix/guix!9540 --- gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 015c9a8f8c5..38acb22179c 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -928,6 +928,32 @@ Application Record Encoding} https://baremessages.org/ message format for Golang.") (license license:asl2.0))) +(define-public go-github-com-6543-go-version + (package + (name "go-github-com-6543-go-version") + (version "1.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/6543/go-version") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qlgwxhw9r2r88ap1m9q1hknn4g3xvcdpjgq14gswcqzd34pyg2v")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/6543/go-version")) + (native-inputs (list go-github-com-stretchr-testify)) + (home-page "https://github.com/6543/go-version") + (synopsis "Versioning Library for Go") + (description + "Package version provides functionality for parsing and comparing version +strings. It supports semantic versioning and includes methods for version +comparison, manipulation, and formatting.") + (license license:mpl2.0))) + (define-public go-github-com-a-h-parse (package (name "go-github-com-a-h-parse") -- cgit v1.2.3