diff options
| author | Roman Scherer <roman@burningswell.com> | 2025-12-24 17:19:52 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-06 21:32:43 +0100 |
| commit | 14f4a8eaa05ba8103e889f06986b63c1727a8c26 (patch) | |
| tree | 95172084567ac2bac3b4794069c7d4164b72c832 | |
| parent | 613cdc4b46a3c01819e2e3fd8a278a6786bc9ddb (diff) | |
gnu: Add go-github-com-muhammadmuzzammil1998-jsonc.
* gnu/packages/golang-xyz.scm (go-github-com-muhammadmuzzammil1998-jsonc): New variable.
Relates-to: https://codeberg.org/guix/guix/issues/5190
Change-Id: I30d7be35f9dfc2bd9fac539cf0c1874f1e9d1470
Reviewed-by: Johannes Christ <jc@jchri.st>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5641b933422..b357a1a900a 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -19320,6 +19320,34 @@ Data type that can be converted: @end itemize") (license license:expat)))) +(define-public go-github-com-muhammadmuzzammil1998-jsonc + (package + (name "go-github-com-muhammadmuzzammil1998-jsonc") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/muhammadmuzzammil1998/jsonc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "037xi03p46hnfwwh5ylnkzm859h9bi3yn451647y4ghzjbwii1g4")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/muhammadmuzzammil1998/jsonc")) + (home-page "https://github.com/muhammadmuzzammil1998/jsonc") + (synopsis "JSON with comments parser for Go") + (description + "JSONC is a superset of JSON which supports comments. JSON formatted +files are readable to humans but the lack of comments decreases readability. +With JSONC, you can use block (@code{/* */}) and single line (@code{//} or +@code{#}) comments to describe functionality. Microsoft VS Code also uses +this format in configuration files like @file{settings.json}, +@file{keybindings.json}, and @file{launch.json}.") + (license license:expat))) + (define-public go-github-com-muhlemmer-gu (package (name "go-github-com-muhlemmer-gu") |
