2022-11-07T09:32:16 doctl 1.84.1 -> 1.85.0 https://repology.org/metapackage/doctl/versions 2022-11-07T09:32:18 attrpath: doctl 2022-11-07T09:32:18 Checking auto update branch... 2022-11-07T09:32:18 No auto update branch exists 2022-11-07T09:32:19 Old version 1.84.1" not present in master derivation file with contents: { stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles, buildPackages }: buildGoModule rec { pname = "doctl"; version = "1.85.0"; vendorSha256 = null; doCheck = false; subPackages = [ "cmd/doctl" ]; ldflags = let t = "github.com/digitalocean/doctl"; in [ "-X ${t}.Major=${lib.versions.major version}" "-X ${t}.Minor=${lib.versions.minor version}" "-X ${t}.Patch=${lib.versions.patch version}" "-X ${t}.Label=release" ]; nativeBuildInputs = [ installShellFiles ]; postInstall = '' export HOME=$(mktemp -d) # attempts to write to /homeless-shelter for shell in bash fish zsh; do ${stdenv.hostPlatform.emulator buildPackages} $out/bin/doctl completion $shell > doctl.$shell installShellCompletion doctl.$shell done ''; src = fetchFromGitHub { owner = "digitalocean"; repo = "doctl"; rev = "v${version}"; sha256 = "sha256-zA+9RpGGiRlu/xQoKjkI5zg6d2fPR7WKW0Sj2ggSypA="; }; meta = with lib; { description = "A command line tool for DigitalOcean services"; homepage = "https://github.com/digitalocean/doctl"; license = licenses.asl20; maintainers = [ maintainers.siddharthist ]; }; }