summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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")