kubergrunt 0.11.1 -> 0.11.2 https://repology.org/project/kubergrunt/versions attrpath: kubergrunt Checking auto update branch... No auto update branch exists Old version 0.11.1" not present in master derivation file with contents: { buildGoModule, lib, fetchFromGitHub }: buildGoModule rec { pname = "kubergrunt"; version = "0.11.2"; src = fetchFromGitHub { owner = "gruntwork-io"; repo = "kubergrunt"; rev = "v${version}"; sha256 = "sha256-HVIPKfoAfBZH8wA2GMabhTkYxDLvP15XoZuTVSy2i8M="; }; vendorHash = "sha256-AUw1wJNWjpNVsjw/Hr1ZCePYWQkf1SqRVnQgi8tOFG0="; # Disable tests since it requires network access and relies on the # presence of certain AWS infrastructure doCheck = false; postInstall = '' # The binary is named kubergrunt mv $out/bin/cmd $out/bin/kubergrunt ''; meta = with lib; { description = "Collection of commands to fill in the gaps between Terraform, Helm, and Kubectl"; homepage = "https://github.com/gruntwork-io/kubergrunt"; license = licenses.asl20; maintainers = with maintainers; [ psibi ]; }; }