arkade 0.11.1 -> 0.11.2 https://repology.org/project/arkade/versions attrpath: arkade Checking auto update branch... No auto update branch exists Old version 0.11.1" not present in master derivation file with contents: { lib , stdenv , buildGoModule , fetchFromGitHub , installShellFiles }: buildGoModule rec { pname = "arkade"; version = "0.11.2"; src = fetchFromGitHub { owner = "alexellis"; repo = "arkade"; rev = version; hash = "sha256-G8zWPz5pTDjfZJ8DtY1DQRGYMOsGhNXWZEgFYKM/y6I="; }; CGO_ENABLED = 0; nativeBuildInputs = [ installShellFiles ]; vendorHash = null; # Exclude pkg/get: tests downloading of binaries which fail when sandbox=true subPackages = [ "." "cmd" "pkg/apps" "pkg/archive" "pkg/config" "pkg/env" "pkg/helm" "pkg/k8s" "pkg/types" ]; ldflags = [ "-s" "-w" "-X github.com/alexellis/arkade/pkg.GitCommit=ref/tags/${version}" "-X github.com/alexellis/arkade/pkg.Version=${version}" ]; postInstall = '' installShellCompletion --cmd arkade \ --bash <($out/bin/arkade completion bash) \ --zsh <($out/bin/arkade completion zsh) \ --fish <($out/bin/arkade completion fish) ''; meta = with lib; { homepage = "https://github.com/alexellis/arkade"; description = "Open Source Kubernetes Marketplace"; license = licenses.mit; maintainers = with maintainers; [ welteki techknowlogick qjoly ]; }; }