guix_mirror_bot pushed a commit to branch master
in repository guix.
commit c1ce1659b680dad1c67896916fd241bee4d42bd1
Author: Patrick Norton <[email protected]>
AuthorDate: Mon Nov 24 14:21:57 2025 -0500
gnu: Add go-github-com-lpar-date.
* gnu/packages/golang-xyz.scm (go-github-com-lpar-date): New variable.
Change-Id: Ie4d746d894c15806e4b573cdff01c995822efd19
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 3956dbd38d..f59cfed0b8 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -14425,6 +14425,33 @@ Printf/Sprintf etc.")
(native-inputs
(list go-github-com-stretchr-testify))))
+(define-public go-github-com-lpar-date
+ (package
+ (name "go-github-com-lpar-date")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/lpar/date")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "03vjnabrxhrvc4ws0adyxc6vy6ds990hnsfbr5nxyblvchyyxvj7"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ ;; "(*testing.common).Errorf format %s has arg d2 of wrong type"
+ #:test-flags
+ #~(list "-vet=off")
+ #:import-path "github.com/lpar/date"))
+ (home-page "https://github.com/lpar/date")
+ (synopsis "Utilities for working with SQL dates in Golang")
+ (description
+ "This package implements minimal utility functions for working with SQL
+dates and other date-only dates in Go.")
+ (license license:bsd-3)))
+
(define-public go-github-com-lucasb-eyer-go-colorful
(package
(name "go-github-com-lucasb-eyer-go-colorful")