mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
65 lines
2.0 KiB
Nix
65 lines
2.0 KiB
Nix
{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, nix-update-script, k9s }:
|
|
|
|
buildGoModule rec {
|
|
pname = "k9s";
|
|
version = "0.32.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "derailed";
|
|
repo = "k9s";
|
|
rev = "v${version}";
|
|
hash = "sha256-H0PimkPXs2/iirOpN82az3Bge71k1RZOhMtr0UmGOy8=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/derailed/k9s/cmd.version=${version}"
|
|
"-X github.com/derailed/k9s/cmd.commit=${src.rev}"
|
|
"-X github.com/derailed/k9s/cmd.date=1970-01-01T00:00:00Z"
|
|
];
|
|
|
|
tags = [ "netcgo" ];
|
|
|
|
proxyVendor = true;
|
|
|
|
vendorHash = "sha256-U/tIsYpoog3S8V2yQGGqaQ+Av7TfvCYt3zn74qWuQKs=";
|
|
|
|
# TODO investigate why some config tests are failing
|
|
doCheck = !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64);
|
|
# Required to workaround test check error:
|
|
preCheck = "export HOME=$(mktemp -d)";
|
|
# For arch != x86
|
|
# {"level":"fatal","error":"could not create any of the following paths: /homeless-shelter/.config, /etc/xdg","time":"2022-06-28T15:52:36Z","message":"Unable to create configuration directory for k9s"}
|
|
passthru = {
|
|
tests.version = testers.testVersion {
|
|
package = k9s;
|
|
command = "HOME=$(mktemp -d) k9s version -s";
|
|
inherit version;
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
postInstall = ''
|
|
# k9s requires a writeable log directory
|
|
# Otherwise an error message is printed
|
|
# into the completion scripts
|
|
export K9S_LOGS_DIR=$(mktemp -d)
|
|
|
|
installShellCompletion --cmd k9s \
|
|
--bash <($out/bin/k9s completion bash) \
|
|
--fish <($out/bin/k9s completion fish) \
|
|
--zsh <($out/bin/k9s completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Kubernetes CLI To Manage Your Clusters In Style";
|
|
homepage = "https://github.com/derailed/k9s";
|
|
changelog = "https://github.com/derailed/k9s/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
mainProgram = "k9s";
|
|
maintainers = with maintainers; [ Gonzih markus1189 bryanasdev000 qjoly ];
|
|
};
|
|
}
|