diff options
author | Formbi <formbi@protonmail.com> | 2025-05-28 14:51:25 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-10 12:31:49 +0100 |
commit | 47f89ae33cb2b90bcde7d167bd1f953d8c498db0 (patch) | |
tree | cf7126cf1ddbcce002f02b74670e81f3aa580251 /gnu/packages/golang-xyz.scm | |
parent | 1c1f25333b1d3d4b08af77f85a04bb503a7874c8 (diff) |
gnu: Add go-github-com-dannav-hhmmss.
* gnu/packages/golang-xyz.scm (go-github-com-dannav-hhmmss): New variable.
Change-Id: Ie3a0f4c11d621eccb69897857899026ecaebf76b
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.ccom>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 0eef152bdd..9c365eb22d 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3927,6 +3927,30 @@ against various paths. This is particularly useful when trying to filter files based on a .gitignore document.") (license license:expat))) +(define-public go-github-com-dannav-hhmmss + (package + (name "go-github-com-dannav-hhmmss") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dannav/hhmmss") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1h2wdpd5sd2wfd5d2vyqiwlrqlxf3qwpqjy74hbcr7bhjpgv81m0")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/dannav/hhmmss")) + (home-page "https://github.com/dannav/hhmmss") + (synopsis "Parse HHMMSS strings into a Go time.Duration type") + (description + "Package @code{hhmmss} manages converting HH:MM:SS time strings to +@code{time.Duration} values.") + (license license:asl2.0))) + (define-public go-github-com-dicedb-dicedb-go (package (name "go-github-com-dicedb-dicedb-go") |