{ lib , buildGoModule , fetchFromGitHub , installShellFiles }: buildGoModule rec { pname = "gatekeeper"; version = "3.10.0"; src = fetchFromGitHub { owner = "open-policy-agent"; repo = "gatekeeper"; rev = "v${version}"; sha256 = "sha256-4U03gdOls1uPpTqxmjLo1ruE4eeuUlGxphOgS9e5C1A="; }; vendorSha256 = null; nativeBuildInputs = [ installShellFiles ]; subPackages = [ "cmd/gator" ]; postInstall = '' installShellCompletion --cmd gator \ --bash <($out/bin/gator completion bash) \ --fish <($out/bin/gator completion fish) \ --zsh <($out/bin/gator completion zsh) ''; meta = with lib; { description = "Policy Controller for Kubernetes"; homepage = "https://github.com/open-policy-agent/gatekeeper"; license = licenses.asl20; maintainers = with maintainers; [ SuperSandro2000 ]; }; }