unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#55701] [PATCH] gnu: Add go-github-com-google-go-jsonnet
@ 2022-05-29  9:36 JOULAUD François via Guix-patches via
  2022-06-10 21:02 ` bug#55701: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: JOULAUD François via Guix-patches via @ 2022-05-29  9:36 UTC (permalink / raw)
  To: 55701

[-- Attachment #1: Type: text/plain, Size: 3240 bytes --]


This adds the jsonnet command. I would like to add too the jsonnet-fmt
command and the Python bindings but I struggle to understand how to do
it. I begin with the easy part using guix import.

I found that #:unpack-path and #:import-path are unintuitive, there is
room for better interface here, or at least some documentation.

* gnu/packages/golang.scm (go-github-com-google-go-jsonnet): New variable.
* gnu/packages/golang.scm (go-sigs-k8s-io-yaml): New variable.

Signed-off-by: François Joulaud <francois.joulaud@radiofrance.com>
---
gnu/packages/golang.scm | 52 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 820e6b54ab..ad34bd345f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9775,3 +9775,55 @@ (define-public go-github-com-go-chi-chi-v5
      "@code{go-github-com-go-chi-chi-v5} is an HTTP router that lets the user
decompose request handling into many smaller layers.")
     (license license:expat)))
+
+(define-public go-sigs-k8s-io-yaml
+  (package
+    (name "go-sigs-k8s-io-yaml")
+    (version "1.3.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/kubernetes-sigs/yaml")
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32 "0qxs0ppqwqrfqs4aywyn1h28xh1qlj5ds4drmygaz1plrxj02dqn"))))
+    (build-system go-build-system)
+    (arguments '(#:import-path "sigs.k8s.io/yaml"))
+    (propagated-inputs
+      `(("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2)
+        ("go-github-com-davecgh-go-spew" ,go-github-com-davecgh-go-spew)))
+    (home-page "https://sigs.k8s.io/yaml")
+    (synopsis "YAML marshaling and unmarshaling support for Go")
+    (description
+      "kubernetes-sigs/yaml is a permanent fork of
+@url{https://github.com/ghodss/yaml,ghodss/yaml}.")
+    (license (list license:expat license:bsd-3))))
+
+(define-public go-github-com-google-go-jsonnet
+  (package
+    (name "go-github-com-google-go-jsonnet")
+    (version "0.18.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/google/go-jsonnet")
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32 "1dghqygag123zkgh2vrnq82cdag5z0p03v3489pwhs06r5g27wm3"))))
+    (build-system go-build-system)
+    (arguments '(#:import-path "github.com/google/go-jsonnet/cmd/jsonnet"
+                 #:unpack-path "github.com/google/go-jsonnet"))
+    (propagated-inputs
+      `(("go-sigs-k8s-io-yaml" ,go-sigs-k8s-io-yaml)
+        ("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2)
+        ("go-github-com-sergi-go-diff" ,go-github-com-sergi-go-diff)
+        ("go-github-com-fatih-color" ,go-github-com-fatih-color)))
+    (home-page "https://github.com/google/go-jsonnet")
+    (synopsis "go-jsonnet")
+    (description
+      "Package jsonnet implements a parser and evaluator for jsonnet.")
+    (license license:asl2.0)))
--
2.36.1

[-- Attachment #2: Type: text/html, Size: 5373 bytes --]

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#55701: [PATCH] gnu: Add go-github-com-google-go-jsonnet
  2022-05-29  9:36 [bug#55701] [PATCH] gnu: Add go-github-com-google-go-jsonnet JOULAUD François via Guix-patches via
@ 2022-06-10 21:02 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2022-06-10 21:02 UTC (permalink / raw)
  To: JOULAUD François; +Cc: 55701-done

Hi François,

JOULAUD François <Francois.JOULAUD@radiofrance.com> skribis:

> This adds the jsonnet command. I would like to add too the jsonnet-fmt
> command and the Python bindings but I struggle to understand how to do
> it. I begin with the easy part using guix import.
>
> I found that #:unpack-path and #:import-path are unintuitive, there is
> room for better interface here, or at least some documentation.

Noted.  I’m not familiar with ‘go-build-system’; could you bring this up
on guix-devel@gnu.org?

> * gnu/packages/golang.scm (go-github-com-google-go-jsonnet): New variable.
> * gnu/packages/golang.scm (go-sigs-k8s-io-yaml): New variable.

I split it into two patches and improved descriptions, as per:

  https://guix.gnu.org/manual/devel/en/html_node/Submitting-Patches.html

Thank you!

Ludo’.




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-06-10 21:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-29  9:36 [bug#55701] [PATCH] gnu: Add go-github-com-google-go-jsonnet JOULAUD François via Guix-patches via
2022-06-10 21:02 ` bug#55701: " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).