~ruther/guix-local

c1ce1659b680dad1c67896916fd241bee4d42bd1 — Patrick Norton 3 months ago ee5dd04
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 <sharlatanus@gmail.com>
1 files changed, 27 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +27 -0
@@ 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")