mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
kind: init at 2ae73f8e
This commit is contained in:
parent
e82162c262
commit
6124447a54
26
pkgs/development/tools/kind/default.nix
Normal file
26
pkgs/development/tools/kind/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user