mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add go-sigs-k8s-io-kustomize-kyaml.
* gnu/packages/golang-xyz.scm (go-sigs-k8s-io-kustomize-kyaml): New variable. Change-Id: I50f8f89363c9d8320d9ea954623ee6514464db17
This commit is contained in:
parent
961396c2b7
commit
6a02828760
1 changed files with 47 additions and 0 deletions
|
@ -22549,6 +22549,53 @@ prints the Go version used to build that executable.")
|
||||||
unmarshaling functions based on @code{encoding/json} @code{Unmarshal()}.")
|
unmarshaling functions based on @code{encoding/json} @code{Unmarshal()}.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public go-sigs-k8s-io-kustomize-kyaml
|
||||||
|
(package
|
||||||
|
(name "go-sigs-k8s-io-kustomize-kyaml")
|
||||||
|
(version "0.19.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/kubernetes-sigs/kustomize")
|
||||||
|
(commit (go-version->git-ref version
|
||||||
|
#:subdir "kyaml"))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0bpllzbaxvi93i74dw1z8k221ib2ydks0wmwx13vkh6cacrvydan"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:go go-1.23
|
||||||
|
#:import-path "sigs.k8s.io/kustomize/kyaml"
|
||||||
|
#:unpack-path "sigs.k8s.io/kustomize"
|
||||||
|
#:test-flags
|
||||||
|
#~(list "-skip" (string-join
|
||||||
|
(list "TestCommandResultsChecker_UpdateExpectedFromActual"
|
||||||
|
"TestProcessorResultsChecker_UpdateExpectedFromActual")
|
||||||
|
"|"))))
|
||||||
|
(native-inputs
|
||||||
|
(list go-github-com-stretchr-testify
|
||||||
|
go-github-com-davecgh-go-spew))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-go-errors-errors
|
||||||
|
go-github-com-google-gnostic-models
|
||||||
|
go-github-com-google-go-cmp
|
||||||
|
go-github-com-monochromegane-go-gitignore
|
||||||
|
go-github-com-sergi-go-diff
|
||||||
|
go-github-com-spf13-cobra
|
||||||
|
go-github-com-xlab-treeprint
|
||||||
|
go-golang-org-x-sys
|
||||||
|
go-google-golang-org-protobuf
|
||||||
|
go-k8s-io-kube-openapi
|
||||||
|
go-sigs-k8s-io-yaml))
|
||||||
|
(home-page "https://github.com/kubernetes-sigs/")
|
||||||
|
(synopsis "Read Kubernetes config as YAML")
|
||||||
|
(description
|
||||||
|
"Package kyaml contains libraries for reading and writing Kubernetes Resource
|
||||||
|
configuration as YAML.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-sigs-k8s-io-structured-merge-diff-v4
|
(define-public go-sigs-k8s-io-structured-merge-diff-v4
|
||||||
(package
|
(package
|
||||||
(name "go-sigs-k8s-io-structured-merge-diff-v4")
|
(name "go-sigs-k8s-io-structured-merge-diff-v4")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue