arkade 0.9.0 -> 0.9.2 https://github.com/alexellis/arkade/releases attrpath: arkade Checking auto update branch... No auto update branch exists Old version 0.9.0" not present in master derivation file with contents: { lib , stdenv , buildGoModule , fetchFromGitHub , installShellFiles }: buildGoModule rec { pname = "arkade"; version = "0.9.2"; src = fetchFromGitHub { owner = "alexellis"; repo = "arkade"; rev = version; sha256 = "sha256-iCyffRVMZq0ajM/I6EY8XypLsGRiJR+9CmrlPNr+K58="; }; CGO_ENABLED = 0; nativeBuildInputs = [ installShellFiles ]; vendorHash = "sha256-WuBZj6W3/E9HbvWTBegmJdY+aw43CYyuw1hXF7RXd3A="; # 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/cmd.GitCommit=ref/tags/${version}" "-X github.com/alexellis/arkade/cmd.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 ]; }; }