summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Norton <patrick.147.norton@gmail.com>2026-01-06 09:38:32 -0500
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-04-30 21:34:00 +0100
commitd29964a37608c03aa24d50a1ed85b6f7b47b6ed0 (patch)
treeb7f94dd9de6416903d81bb526b99ab50af2e506e
parentfb2f32214b3e32594a56fa3c9ef2cdb6773ede4c (diff)
gnu: Add go-github-com-tailscale-hujson.
* gnu/packages/golang-xyz.scm (go-github-com-tailscale-hujson): New variable. Relates-to: https://codeberg.org/guix/guix/pulls/5417 Change-Id: Ib3e321594c1d4ce259c478c61d6207ecca648bea Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/golang-web.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 7e36015860..76b37488d6 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -17933,6 +17933,36 @@ Expect implementation in Golang.")
services. It's an alternative fork of @url{https://github.com/huin/goupnp}.")
(license license:bsd-2)))
+(define-public go-github-com-tailscale-hujson
+ (package
+ (name "go-github-com-tailscale-hujson")
+ (version "0.0.0-20250605163823-992244df8c5a")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tailscale/hujson")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "14adnvmdfm2i8nnan3bidgsqshq55z0rys5h55lfwlxi41d2ylg6"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:test-flags
+ #~(list "-skip" "Fuzz") ;Test fails
+ #:import-path "github.com/tailscale/hujson"))
+ (native-inputs
+ (list go-github-com-google-go-cmp))
+ (propagated-inputs
+ (list go-github-com-hexops-gotextdiff))
+ (home-page "https://github.com/tailscale/hujson")
+ (synopsis "Parser for JWCC format")
+ (description
+ "This package contains a parser and packer for the JWCC format: JSON With
+Commas and Comments (or \"human JSON\").")
+ (license license:bsd-3)))
+
(define-public go-github-com-tdewolff-minify-v2
(package
(name "go-github-com-tdewolff-minify-v2")