forked from mirrors/nixpkgs
kube-aws: remove
This commit is contained in:
parent
6fdd912bd6
commit
9e98fe299f
|
@ -1,36 +0,0 @@
|
|||
{ lib, fetchFromGitHub, buildGoPackage }:
|
||||
|
||||
with lib;
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "kube-aws";
|
||||
version = "0.9.4";
|
||||
|
||||
goPackagePath = "github.com/coreos/kube-aws";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "coreos";
|
||||
repo = "kube-aws";
|
||||
rev = "v${version}";
|
||||
sha256 = "11h14fsnflbx76rmpp0fxahbxi2qgcamgyxy9s4rmw83j2m8csxp";
|
||||
};
|
||||
|
||||
preBuild = ''(
|
||||
cd go/src/${goPackagePath}
|
||||
go generate ./core/controlplane/config
|
||||
go generate ./core/nodepool/config
|
||||
go generate ./core/root/config
|
||||
)'';
|
||||
|
||||
ldflags = [
|
||||
"-X github.com/coreos/kube-aws/core/controlplane/cluster.VERSION=v${version}"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Tool for deploying kubernetes on aws using coreos";
|
||||
license = licenses.asl20;
|
||||
homepage = "https://github.com/coreos/coreos-kubernetes";
|
||||
maintainers = with maintainers; [offline];
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
|
@ -15362,8 +15362,6 @@ with pkgs;
|
|||
|
||||
krew = callPackage ../development/tools/krew { };
|
||||
|
||||
kube-aws = callPackage ../development/tools/kube-aws { };
|
||||
|
||||
kube-hunter = callPackage ../tools/security/kube-hunter { };
|
||||
|
||||
kubeaudit = callPackage ../tools/security/kubeaudit { };
|
||||
|
|
Loading…
Reference in a new issue