Merge pull request #250455 from aaronjheng/kfctl

kfctl: remove

authored by Jonas Heinrich and committed by GitHub 4390df2b 30a47a8b

+1 -35
-33
pkgs/applications/networking/cluster/kfctl/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 - 3 - buildGoModule rec { 4 - pname = "kfctl"; 5 - version = "1.2.0"; 6 - 7 - src = fetchFromGitHub { 8 - owner = "kubeflow"; 9 - repo = pname; 10 - rev = "v${version}"; 11 - sha256 = "sha256-FY7o4QULobLY1djfcc2l6awE/v2stN7cc2lffMkjoPc="; 12 - }; 13 - 14 - vendorSha256 = null; #vendorSha256 = ""; 15 - 16 - subPackages = [ "cmd/kfctl" ]; 17 - 18 - nativeBuildInputs = [ installShellFiles ]; 19 - 20 - postInstall = '' 21 - installShellCompletion --cmd eksctl \ 22 - --bash <($out/bin/kfctl completion bash) \ 23 - --zsh <($out/bin/kfctl completion zsh) 24 - ''; 25 - 26 - meta = with lib; { 27 - description = "A CLI for deploying and managing Kubeflow"; 28 - homepage = "https://github.com/kubeflow/kfctl"; 29 - license = licenses.asl20; 30 - maintainers = with maintainers; [ mvnetbiz ]; 31 - broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.goModules --check 32 - }; 33 - }
+1
pkgs/top-level/aliases.nix
··· 833 833 kexpand = throw "kexpand awless has been dropped due to the lack of maintenance from upstream since 2017"; # Added 2022-06-01 834 834 keybase-go = throw "'keybase-go' has been renamed to/replaced by 'keybase'"; # Converted to throw 2022-02-22 835 835 keysmith = libsForQt5.kdeGear.keysmith; # Added 2021-07-14 836 + kfctl = throw "kfctl is broken and has been archived by upstream" ; # Added 2023-08-21 836 837 kgx = gnome-console; # Added 2022-02-19 837 838 kibana7-oss = throw "kibana7-oss has been removed, as the distribution is no longer provided by upstream. https://github.com/NixOS/nixpkgs/pull/114456"; # Added 2021-06-09 838 839 kicad-with-packages3d = kicad; # Added 2019-11-25
-2
pkgs/top-level/all-packages.nix
··· 9666 9666 jdk = jdk11; 9667 9667 }; 9668 9668 9669 - kfctl = callPackage ../applications/networking/cluster/kfctl { }; 9670 - 9671 9669 kluctl = callPackage ../applications/networking/cluster/kluctl { }; 9672 9670 9673 9671 kibana7 = callPackage ../development/tools/misc/kibana/7.x.nix { };