arkade 0.8.56 -> 0.8.60 https://repology.org/metapackage/arkade/versions attrpath: arkade Checking auto update branch... No auto update branch exists Old version 0.8.56" not present in master derivation file with contents: { lib , stdenv , buildGoModule , fetchFromGitHub , installShellFiles }: buildGoModule rec { pname = "arkade"; version = "0.8.59"; src = fetchFromGitHub { owner = "alexellis"; repo = "arkade"; rev = version; sha256 = "sha256-uvvxlU5c5MNYVqu0btL4xpjyvb/fDbFPGWkIzru84Z8="; }; CGO_ENABLED = 0; nativeBuildInputs = [ installShellFiles ]; vendorHash = "sha256-WQsnBBx05wXKDS7h3bhipTqZTQLxRjVLObuMNUfAiTk="; # 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 ]; }; }