summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-10 17:22:17 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2022-12-25 12:09:09 +0100
commitd66e9116b3faf7ef2350a2f1fc16eafa1e2edf1e (patch)
tree097cc619202deac3cc5f39f9f00d5a2d4575709b /pkgs/applications/networking
parente07118b744d7f616c1d324e23b66f2a203dc2c94 (diff)
downloadnixpkgs-d66e9116b3faf7ef2350a2f1fc16eafa1e2edf1e.tar
nixpkgs-d66e9116b3faf7ef2350a2f1fc16eafa1e2edf1e.tar.gz
nixpkgs-d66e9116b3faf7ef2350a2f1fc16eafa1e2edf1e.tar.bz2
nixpkgs-d66e9116b3faf7ef2350a2f1fc16eafa1e2edf1e.tar.lz
nixpkgs-d66e9116b3faf7ef2350a2f1fc16eafa1e2edf1e.tar.xz
nixpkgs-d66e9116b3faf7ef2350a2f1fc16eafa1e2edf1e.tar.zst
nixpkgs-d66e9116b3faf7ef2350a2f1fc16eafa1e2edf1e.zip
kubebuilder: add changelog to meta
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/cluster/kubebuilder/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/kubebuilder/default.nix b/pkgs/applications/networking/cluster/kubebuilder/default.nix
index 9e1f583826e..df1e6ab7888 100644
--- a/pkgs/applications/networking/cluster/kubebuilder/default.nix
+++ b/pkgs/applications/networking/cluster/kubebuilder/default.nix
@@ -18,10 +18,10 @@ buildGoModule rec {
     owner = "kubernetes-sigs";
     repo = "kubebuilder";
     rev = "v${version}";
-    sha256 = "sha256-UTzQyr5N8CButeLKYZs9a8hAV/cezVfLLQ7b4YJQzXU=";
+    hash = "sha256-UTzQyr5N8CButeLKYZs9a8hAV/cezVfLLQ7b4YJQzXU=";
   };
 
-  vendorSha256 = "sha256-VvCM0aBk0SnnXVPZRvEGcb1Bl4Uunbc4u1KzukYMGqA=";
+  vendorHash = "sha256-VvCM0aBk0SnnXVPZRvEGcb1Bl4Uunbc4u1KzukYMGqA=";
 
   subPackages = ["cmd"];
 
@@ -61,6 +61,7 @@ buildGoModule rec {
   meta = with lib; {
     description = "SDK for building Kubernetes APIs using CRDs";
     homepage = "https://github.com/kubernetes-sigs/kubebuilder";
+    changelog = "https://github.com/kubernetes-sigs/kubebuilder/releases/tag/v${version}";
     license = licenses.asl20;
     maintainers = with maintainers; [ cmars ];
   };