[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#66827] [PATCH 60/67] gnu: go-github-com-whyrusleeping-json-filter:
From: |
Sharlatan Hellseher |
Subject: |
[bug#66827] [PATCH 60/67] gnu: go-github-com-whyrusleeping-json-filter: Move to (gnu packages golang-web). |
Date: |
Mon, 30 Oct 2023 01:09:14 +0000 |
* gnu/packages/golang.scm (go-github-com-whyrusleeping-json-filter): Move from
here...
* gnu/packages/golang-web.scm: ...to here.
Change-Id: I41d725c82adc3f5571c50bdf6a092e9a310e0f6c
---
gnu/packages/golang-web.scm | 25 +++++++++++++++++++++++++
gnu/packages/golang.scm | 26 --------------------------
2 files changed, 25 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 7f6ced049c..fbfa1049a4 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -1202,6 +1202,31 @@ (define-public go-github-com-valyala-fasthttp
replacement for native @code{net/http} module.")
(license license:expat)))
+(define-public go-github-com-whyrusleeping-json-filter
+ (let ((commit "ff25329a9528f01c5175414f16cc0a6a162a5b8b")
+ (revision "0"))
+ (package
+ (name "go-github-com-whyrusleeping-json-filter")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/whyrusleeping/json-filter")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0cai0drvx4c8j686l908vpcsz3mw3vxi3ziz94b0f3c5ylpj07j7"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path
+ "github.com/whyrusleeping/json-filter"))
+ (home-page "https://github.com/whyrusleeping/json-filter")
+ (synopsis "Library to query JSON objects marshalled into
map[string]interface")
+ (description "A library to query JSON objects marshalled into
+@command{map[string]interface{}}.")
+ (license license:expat))))
+
(define-public go-github-com-xeipuuv-gojsonpointer
(let ((commit "4e3ac2762d5f479393488629ee9370b50873b3a6")
(revision "0"))
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index cf2c0dcfc0..3f93f6eaee 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -6508,32 +6508,6 @@ (define-public go-github-com-pmezard-go-difflib
(description "This package provides unified and context-aware diffs in
Go.")
(license license:bsd-3)))
-(define-public go-github-com-whyrusleeping-json-filter
- (let ((commit "ff25329a9528f01c5175414f16cc0a6a162a5b8b")
- (revision "0"))
- (package
- (name "go-github-com-whyrusleeping-json-filter")
- (version (git-version "0.0.0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/whyrusleeping/json-filter")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0cai0drvx4c8j686l908vpcsz3mw3vxi3ziz94b0f3c5ylpj07j7"))))
- (build-system go-build-system)
- (arguments
- '(#:import-path
- "github.com/whyrusleeping/json-filter"))
- (home-page "https://github.com/whyrusleeping/json-filter")
- (synopsis "Library to query JSON objects marshalled into
map[string]interface")
- (description "A library to query JSON objects marshalled into
-@command{map[string]interface{}}.")
- (license license:expat))))
-
(define-public go-github-com-whyrusleeping-progmeter
(let ((commit "f3e57218a75b913eff88d49a52c1debf9684ea04")
(revision "0"))
--
2.41.0
- [bug#66827] [PATCH 61/67] gnu: go-github-com-stretchr-objx: Move to (gnu packages golang-web)., (continued)
- [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
- [bug#66827] [PATCH 39/67] gnu: go-github-com-francoispqt-gojay: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 52/67] gnu: go-github-com-aws-aws-sdk-go-v2-service-s3: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 65/67] gnu: go-github-com-go-telegram-bot-api-telegram-bot-api: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 53/67] gnu: go-github-com-aws-aws-sdk-go-v2-feature-s3-manager: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 60/67] gnu: go-github-com-whyrusleeping-json-filter: Move to (gnu packages golang-web).,
Sharlatan Hellseher <=
- [bug#66827] [PATCH 64/67] gnu: go-github-com-getsentry-raven-go: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 37/67] gnu: go-github-com-tv42-httpunix: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 63/67] gnu: go-cloud-google-com-go-compute-metadata: Move to (gnu packages golang-web)., Sharlatan Hellseher, 2023/10/29
- [bug#66827] [PATCH 66/67] gnu: actionlint: Update to 1.6.26., Sharlatan Hellseher, 2023/10/29