kube-aws: remove

main
Aaron Jheng 2 years ago
parent 6fdd912bd6
commit 9e98fe299f
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3
  1. 36
      pkgs/development/tools/kube-aws/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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…
Cancel
Save