From c1ce1659b680dad1c67896916fd241bee4d42bd1 Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Mon, 24 Nov 2025 14:21:57 -0500 Subject: [PATCH] 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 --- 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 3956dbd38dbc7c0699d1ce1ca70f7a42d8ffd856..f59cfed0b8e994f860109d8688d2a4029a1ee5f3 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")