summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRoman Scherer <roman@burningswell.com>2026-01-01 17:20:18 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-26 22:07:05 +0000
commit601db48ae2a16720570f0dae94db663e58b30e20 (patch)
treeb8d47f4d4bcaae3318eceb75e240dd0e2c6a840a /gnu
parent6e4090ae635068b6bd3d87d0d5786811d43a2fd2 (diff)
gnu: Add go-github-com-ncruces-julianday.
* gnu/packages/golang-web.scm (go-github-com-ncruces-julianday): New variable. Change-Id: Iacd5295f7fda50dbd7e622da6a52f799484e5248 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index fe592ee2e29..d5b58893bc3 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -18902,6 +18902,31 @@ very fast, and tries to be entropy pool friendly.")
and parsing.")
(license license:expat)))
+(define-public go-github-com-ncruces-julianday
+ (package
+ (name "go-github-com-ncruces-julianday")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ncruces/julianday")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "12zg7hwbhvw2ns2qnf86d4nk0vkbklvp3h49ins7qb43iqw73s8i"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/ncruces/julianday"))
+ (home-page "https://github.com/ncruces/julianday")
+ (synopsis "Julian day conversions for Go")
+ (description
+ "This package provides functions for converting between Julian days and
+Go @code{time.Time} values. Julian days are used by SQLite and other
+databases for date/time storage.")
+ (license license:unlicense)))
+
(define-public go-github-com-netflix-go-expect
(package
(name "go-github-com-netflix-go-expect")