diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-22 20:33:35 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-30 17:11:27 +0000 |
| commit | 15f24d891cdf8b6e4b0e503b5cdd5da85f1ca40b (patch) | |
| tree | 5ba2e3773c5a2a53d1f766bdaacb82e2238a96fe | |
| parent | 14eb8d5a6c44f254419956917c8800a92c1fb8d6 (diff) | |
gnu: Add go-k8s-io-api.
* gnu/packages/golang-xyz.scm (go-k8s-io-api): New variable.
Change-Id: I9593e13d6be6cd505afd9068d4d3a40a97eb2a54
Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me>
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 8628fbac52d..9642379c521 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -24159,6 +24159,33 @@ dependencies.") XML, Apple Binary, OpenStep, and GNUStep) from/to arbitrary Go types.") (license license:giftware))) +(define-public go-k8s-io-api + (package + (name "go-k8s-io-api") + (version "0.34.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kubernetes/api") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1skg38mksg282jlbmf3asmsyij27r9257h3vixqrk50v7rp45zi5")))) + (build-system go-build-system) + (arguments + (list + #:import-path "k8s.io/api")) + (propagated-inputs + (list go-github-com-gogo-protobuf + go-k8s-io-apimachinery)) + (home-page "https://k8s.io/api") + (synopsis "Kubernetes API definition") + (description + "This package provides schema of the external API types that are served +by the Kubernetes API server.") + (license license:asl2.0))) + (define-public go-k8s-io-apimachinery (package (name "go-k8s-io-apimachinery") |
