1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-06 17:25:56 +02:00

gnu: go-jsonnet: Move to golang-xyz.

* gnu/packages/golang.scm (go-jsonnet): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: Iea9d2781c60ca0c1c17d4bdf126f972fa47d22a3
This commit is contained in:
Sharlatan Hellseher
2025-01-08 14:23:19 +00:00
parent 9d18601c98
commit 4ca7437d6b
2 changed files with 33 additions and 30 deletions
+33
View File
@@ -15293,6 +15293,39 @@ correctly.")))
(string-append (package-description go-zgo-at-jfmt)
" This package provides a command line interface (CLI) tool."))))
(define-public go-jsonnet
(package
(name "go-jsonnet")
(version "0.20.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 "1qfr6yvhj33rhx1icxh99bbpngh5kwq1x7r39315y53bw216vbrz"))))
(build-system go-build-system)
(arguments
(list
#:intall-source? #f
#:import-path "github.com/google/go-jsonnet/cmd/jsonnet"
#:unpack-path "github.com/google/go-jsonnet"))
(native-inputs
(list go-github-com-fatih-color
go-github-com-sergi-go-diff
go-gopkg-in-yaml-v2
go-sigs-k8s-io-yaml))
(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)))
(define-public go-ifacemaker
(package/inherit go-github-com-vburenin-ifacemaker
(name "go-ifacemaker")
-30
View File
@@ -3976,36 +3976,6 @@ aware of your profiles and configuration in ~/.aws/config.")
"This package provides INI file read and write functionality in Go.")
(license license:asl2.0)))
(define-public go-jsonnet
(package
(name "go-jsonnet")
(version "0.20.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
"1qfr6yvhj33rhx1icxh99bbpngh5kwq1x7r39315y53bw216vbrz"))))
(build-system go-build-system)
(arguments
'(#:intall-source? #f
#:import-path "github.com/google/go-jsonnet/cmd/jsonnet"
#:unpack-path "github.com/google/go-jsonnet"))
(native-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)))
;; XXX: This repository has been archived by the owner on Dec 29, 2022. It is
;; now read-only. It's only used by kiln, consider to remove it when it does
;; no longer require it.