summary refs log tree commit diff
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2019-04-22 17:27:57 -0500
committerAustin Seipp <aseipp@pobox.com>2019-04-23 09:16:31 -0500
commitda57a2fa60fddf77ad40a6e6e87e139ac87dfe89 (patch)
tree92b03659a94c03289109eaf003a8318553863195
parentd6db31a7205ada37e7141e3b1a1f3099f3302854 (diff)
downloadnixpkgs-da57a2fa60fddf77ad40a6e6e87e139ac87dfe89.tar
nixpkgs-da57a2fa60fddf77ad40a6e6e87e139ac87dfe89.tar.gz
nixpkgs-da57a2fa60fddf77ad40a6e6e87e139ac87dfe89.tar.bz2
nixpkgs-da57a2fa60fddf77ad40a6e6e87e139ac87dfe89.tar.lz
nixpkgs-da57a2fa60fddf77ad40a6e6e87e139ac87dfe89.tar.xz
nixpkgs-da57a2fa60fddf77ad40a6e6e87e139ac87dfe89.tar.zst
nixpkgs-da57a2fa60fddf77ad40a6e6e87e139ac87dfe89.zip
kind: 0.1.0 -> 0.2.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
-rw-r--r--pkgs/development/tools/kind/default.nix19
1 files changed, 11 insertions, 8 deletions
diff --git a/pkgs/development/tools/kind/default.nix b/pkgs/development/tools/kind/default.nix
index 8cf08a93750..f02105aede9 100644
--- a/pkgs/development/tools/kind/default.nix
+++ b/pkgs/development/tools/kind/default.nix
@@ -4,23 +4,26 @@ with stdenv.lib;
 
 buildGoPackage rec {
   name = "kind-${version}";
-  version = "0.1.0";
+  version = "0.2.1";
 
   src = fetchFromGitHub {
-    rev = "${version}";
-    owner = "kubernetes-sigs";
-    repo = "kind";
-    sha256 = "01ifmnv3jid4ls6qw9d6j9vldjbbnrwclzv8spnh6fnzb2wprln2";
+    rev    = "${version}";
+    owner  = "kubernetes-sigs";
+    repo   = "kind";
+    sha256 = "14ddhml9rh7x4j315fb332206xbn1rzx3i0ngj3220vb6d5dv8if";
   };
 
+  # move dev tool package that confuses the go compiler
+  patchPhase = "rm -r hack";
+
   goPackagePath = "sigs.k8s.io/kind";
   excludedPackages = "images/base/entrypoint";
 
   meta = {
     description = "Kubernetes IN Docker - local clusters for testing Kubernetes";
-    homepage = https://github.com/kubernetes-sigs/kind;
+    homepage    = https://github.com/kubernetes-sigs/kind;
     maintainers = with maintainers; [ offline rawkode ];
-    license = stdenv.lib.licenses.asl20;
-    platforms = platforms.unix;
+    license     = stdenv.lib.licenses.asl20;
+    platforms   = platforms.unix;
   };
 }