[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#66827] [PATCH 55/67] gnu: go-github-com-hjson-hjson-go: Move to (gn
From: |
Sharlatan Hellseher |
Subject: |
[bug#66827] [PATCH 55/67] gnu: go-github-com-hjson-hjson-go: Move to (gnu packages golang-web). |
Date: |
Mon, 30 Oct 2023 01:09:09 +0000 |
* gnu/packages/golang.scm (go-github-com-hjson-hjson-go): Move from
here...
* gnu/packages/golang-web.scm: ...to here.
* gnu/packages/networking.scm: Add (gnu packages golang-web) module.
* gnu/packages/uucp.scm: As above.
Change-Id: If1ba5e4d866ce74fa35ae9126c6ba4cd0b149dab
---
gnu/packages/golang-web.scm | 24 ++++++++++++++++++++++++
gnu/packages/golang.scm | 24 ------------------------
gnu/packages/networking.scm | 1 +
gnu/packages/uucp.scm | 1 +
4 files changed, 26 insertions(+), 24 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 96873f020c..4771657add 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -6,6 +6,7 @@
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
+;;; Copyright © 2020 raingloom <raingloom@riseup.net>
;;; Copyright © 2020-2022 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
@@ -757,6 +758,29 @@ (define-public go-github-com-gorilla-websocket
protocol.")
(license license:bsd-2)))
+(define-public go-github-com-hjson-hjson-go
+ (package
+ (name "go-github-com-hjson-hjson-go")
+ (version "3.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hjson/hjson-go")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1dfdiahimg6z9idg8jiqxwnlwjnmasbjccx8gnag49cz4yfqskaz"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/hjson/hjson-go"))
+ (home-page "https://hjson.org/")
+ (synopsis "Human JSON implementation for Go")
+ (description "Hjson is a syntax extension to JSON. It is intended to be
+used like a user interface for humans, to read and edit before passing the
+JSON data to the machine.")
+ (license license:expat)))
+
(define-public go-github-com-jcmturner-dnsutils-v2
(package
(name "go-github-com-jcmturner-dnsutils-v2")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index c9eb70cf1f..0e608a8eab 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9965,30 +9965,6 @@ (define-public go-github-com-hashicorp-go-syslog
(description "This package is a very simple wrapper around log/syslog")
(license license:expat)))
-(define-public go-github-com-hjson-hjson-go
- (package
- (name "go-github-com-hjson-hjson-go")
- (version "3.1.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/hjson/hjson-go")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1dfdiahimg6z9idg8jiqxwnlwjnmasbjccx8gnag49cz4yfqskaz"))))
- (build-system go-build-system)
- (arguments
- '(#:import-path "github.com/hjson/hjson-go"))
- (home-page "https://hjson.org/")
- (synopsis "Human JSON implementation for Go")
- (description "Hjson is a syntax extension to JSON. It is intended to be
-used like a user interface for humans, to read and edit before passing the
-JSON data to the machine.")
- (license license:expat)))
-
(define-public go-golang-zx2c4-com-wireguard
(package
(name "go-golang-zx2c4-com-wireguard")
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 86309e4ab3..0fffea7ce4 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -122,6 +122,7 @@ (define-module (gnu packages networking)
#:use-module (gnu packages gnome)
#:use-module (gnu packages gnupg)
#:use-module (gnu packages golang)
+ #:use-module (gnu packages golang-web)
#:use-module (gnu packages graphviz)
#:use-module (gnu packages gstreamer)
#:use-module (gnu packages gtk)
diff --git a/gnu/packages/uucp.scm b/gnu/packages/uucp.scm
index e10de59aa2..1626c90c36 100644
--- a/gnu/packages/uucp.scm
+++ b/gnu/packages/uucp.scm
@@ -19,6 +19,7 @@
(define-module (gnu packages uucp)
#:use-module (gnu packages golang)
+ #:use-module (gnu packages golang-web)
#:use-module (gnu packages texinfo)
#:use-module (guix licenses)
#:use-module (guix packages)
--
2.41.0
- [bug#66827] [PATCH 46/67] gnu: go-github-com-aws-aws-sdk-go: Move to (gnu packages golang-web)., (continued)
- [bug#66827] [PATCH 46/67] gnu: go-github-com-aws-aws-sdk-go: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 44/67] gnu: go-github-com-aws-smithy-go: Adjust description., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 49/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-sso: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 45/67] gnu: go-github-com-aws-aws-sdk-go-v2: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 48/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-iam: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 43/67] gnu: go-github-com-aws-smithy-go: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 47/67] gnu: go-github-com-aws-aws-sdk-go-v2-config: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 41/67] gnu: go-github-com-goccy-go-json: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 50/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-ssooidc: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 54/67] gnu: go-github-com-nwidger-jsoncolor: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 55/67] gnu: go-github-com-hjson-hjson-go: Move to (gnu packages golang-web).,
Sharlatan Hellseher <=
- [bug#66827] [PATCH 56/67] gnu: go-github-com-xeipuuv-gojsonschema: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 59/67] gnu: go-github-com-xeipuuv-gojsonreference: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 58/67] gnu: go-github-com-xeipuuv-gojsonpointer: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 57/67] gnu: go-github-com-xeipuuv-gojsonschema: Adjust inputs., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 61/67] gnu: go-github-com-stretchr-objx: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 62/67] gnu: go-github-com-google-go-github: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 51/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-sts: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 67/67] teams: go-team: Extend scope., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 38/67] gnu: go-github-com-opentracing-opentracing-go: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 36/67] gnu: go-github-com-emicklei-go-restful: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29