istioctl: bundle charts

Fixes #94163
This commit is contained in:
Teo Klestrup Röijezon 2020-07-29 11:45:08 +02:00
parent 8649a86884
commit 0f23e0b661

View file

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub, go-bindata }:
buildGoModule rec {
pname = "istioctl";
@ -12,6 +12,13 @@ buildGoModule rec {
};
vendorSha256 = "15l9z2a8p46jvmkl0vvm6s196mlics0qgmpm3yq3bn6cqnybdsij";
nativeBuildInputs = [ go-bindata ];
preBuild = ''
patchShebangs operator/scripts
operator/scripts/create_assets_gen.sh
'';
subPackages = [ "istioctl/cmd/istioctl" ];
meta = with lib; {