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 bb883c7ce9
commit 01c538a014
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 33 additions and 30 deletions

View file

@ -15293,6 +15293,39 @@ (define-public go-jfmt
(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")

View file

@ -3976,36 +3976,6 @@ (define-public go-github-com-go-ini-ini
"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.