kind: init at 2ae73f8e

This commit is contained in:
Jaka Hudoklin 2018-10-06 13:43:21 +02:00
parent e82162c262
commit 6124447a54
No known key found for this signature in database
GPG key ID: 916062A1C4748647
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
with stdenv.lib;
buildGoPackage rec {
name = "kind-${version}";
version = "2018-10-03-${stdenv.lib.strings.substring 0 7 rev}";
rev = "2ae73f8ef93609991b0e47a67825390ceec95b3f";
src = fetchFromGitHub {
rev = rev;
owner = "kubernetes-sigs";
repo = "kind";
sha256 = "0bg3y35sc1c73z4rfq11x1jz340786q91ywm165ri7vx280ffjgh";
};
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;
maintainers = with maintainers; [ offline ];
license = stdenv.lib.licenses.asl20;
};
}

View file

@ -8523,6 +8523,8 @@ with pkgs;
kcov = callPackage ../development/tools/analysis/kcov { };
kind = callPackage ../development/tools/kind { };
kube-aws = callPackage ../development/tools/kube-aws { };
kubectx = callPackage ../development/tools/kubectx { };