mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
1bc73d1a9a
Co-Authored-By: lewo <lewo@abesis.fr>
31 lines
807 B
Nix
31 lines
807 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
with stdenv.lib;
|
|
|
|
buildGoPackage rec {
|
|
name = "kind-${version}";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "kubernetes-sigs";
|
|
repo = "kind";
|
|
sha256 = "1azl5knw1n7g42xp92r9k7y4rzwp9xx0spcldszrpry2v4lmc5sb";
|
|
};
|
|
|
|
# move dev tool package that confuses the go compiler
|
|
patchPhase = "rm -r hack";
|
|
|
|
goDeps = ./deps.nix;
|
|
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 rawkode ];
|
|
license = stdenv.lib.licenses.asl20;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|