about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/kfctl/default.nix
blob: efb36b00c6c2d750b5f6ccb5ae51f4a1e1706709 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:

buildGoModule rec {
  pname = "kfctl";
  version = "1.2.0";

  src = fetchFromGitHub {
    owner = "kubeflow";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-FY7o4QULobLY1djfcc2l6awE/v2stN7cc2lffMkjoPc=";
  };

  vendorSha256 = null; #vendorSha256 = "";

  subPackages = [ "cmd/kfctl" ];

  nativeBuildInputs = [ installShellFiles ];

  postInstall = ''
  installShellCompletion --cmd eksctl \
    --bash <($out/bin/kfctl completion bash) \
    --zsh <($out/bin/kfctl completion zsh)
  '';

  meta = with lib; {
    description = "A CLI for deploying and managing Kubeflow";
    homepage = "https://github.com/kubeflow/kfctl";
    license = licenses.asl20;
    maintainers = with maintainers; [ mvnetbiz ];
    broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.goModules --check
  };
}