summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-25 22:46:08 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-06-27 00:16:56 +0100
commit7bdadfa7204c6d64a8d69ac658c27fefdbede010 (patch)
tree1542e8ccea3e12cef5aca48590acaacaa8aa622d /gnu
parent0a2809155b2deebf4d17c4fb2574256cc55dd6e7 (diff)
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
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm26
1 files changed, 26 insertions, 0 deletions
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
928Golang.") 928Golang.")
929 (license license:asl2.0))) 929 (license license:asl2.0)))
930 930
931(define-public go-github-com-6543-go-version
932 (package
933 (name "go-github-com-6543-go-version")
934 (version "1.4.0")
935 (source
936 (origin
937 (method git-fetch)
938 (uri (git-reference
939 (url "https://github.com/6543/go-version")
940 (commit (string-append "v" version))))
941 (file-name (git-file-name name version))
942 (sha256
943 (base32 "0qlgwxhw9r2r88ap1m9q1hknn4g3xvcdpjgq14gswcqzd34pyg2v"))))
944 (build-system go-build-system)
945 (arguments
946 (list
947 #:import-path "github.com/6543/go-version"))
948 (native-inputs (list go-github-com-stretchr-testify))
949 (home-page "https://github.com/6543/go-version")
950 (synopsis "Versioning Library for Go")
951 (description
952 "Package version provides functionality for parsing and comparing version
953strings. It supports semantic versioning and includes methods for version
954comparison, manipulation, and formatting.")
955 (license license:mpl2.0)))
956
931(define-public go-github-com-a-h-parse 957(define-public go-github-com-a-h-parse
932 (package 958 (package
933 (name "go-github-com-a-h-parse") 959 (name "go-github-com-a-h-parse")