guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/06: gnu: Add go-github-com-google-go-jsonnet.


From: guix-commits
Subject: 03/06: gnu: Add go-github-com-google-go-jsonnet.
Date: Fri, 10 Jun 2022 17:56:28 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 8d4a69eb90d38b74bac667476c7968d1d5ed9fad
Author: JOULAUD François <Francois.JOULAUD@radiofrance.com>
AuthorDate: Fri Jun 10 22:53:02 2022 +0200

    gnu: Add go-github-com-google-go-jsonnet.
    
    * gnu/packages/golang.scm (go-github-com-google-go-jsonnet): New
    variable.
    
    Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/golang.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 4c6e8e63f0..61c29be116 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9805,3 +9805,32 @@ methods @code{MarshalJSON} and @code{UnmarshalJSON} 
unlike
 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 (list go-sigs-k8s-io-yaml go-gopkg-in-yaml-v2
+                             go-github-com-sergi-go-diff
+                             go-github-com-fatih-color))
+    (home-page "https://github.com/google/go-jsonnet";)
+    (synopsis "Go implementation of Jsonnet")
+    (description
+     "This package provides an implementation of the @url{http://jsonnet.org/,
+Jsonnet} data templating language in Go.  It is a feature-complete,
+production-ready implementation, compatible with the original Jsonnet C++
+implementation.")
+    (license license:asl2.0)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]