Commit 7c1f76598a6e
Changed files (1)
pkgs
manifest-tool
pkgs/manifest-tool/default.nix
@@ -2,7 +2,6 @@
lib,
buildGoModule,
fetchFromGitHub,
- installShellFiles,
}:
buildGoModule rec {
@@ -22,16 +21,6 @@ buildGoModule rec {
};
vendorHash = null;
- nativeBuildInputs = [ installShellFiles ];
-
- postInstall = ''
- # urfave/cli v2 shell completion support
- installShellCompletion --cmd manifest-tool \
- --bash <($out/bin/manifest-tool completion bash) \
- --fish <($out/bin/manifest-tool completion fish) \
- --zsh <($out/bin/manifest-tool completion zsh)
- '';
-
meta = {
description = "Tool for inspecting and creating multi-platform container image manifests";
homepage = "https://github.com/estesp/manifest-tool";