doppler 3.53.0 -> 3.53.1 https://github.com/dopplerhq/cli/releases attrpath: doppler Checking auto update branch... No auto update branch exists Old version 3.53.0" not present in master derivation file with contents: { buildGoModule , doppler , fetchFromGitHub , installShellFiles , lib , testers }: buildGoModule rec { pname = "doppler"; version = "3.53.1"; src = fetchFromGitHub { owner = "dopplerhq"; repo = "cli"; rev = version; sha256 = "sha256-ZgXUnHYaWRBjAW/k74o93SIJJbcI3zlw5GmwXE6Ri8U="; }; vendorHash = "sha256-TwcEH+LD0E/JcptMCYb3UycO3HhZX3igzSlBW4hS784="; ldflags = [ "-s -w" "-X github.com/DopplerHQ/cli/pkg/version.ProgramVersion=v${version}" ]; nativeBuildInputs = [ installShellFiles ]; postInstall = '' mv $out/bin/cli $out/bin/doppler installShellCompletion --cmd doppler \ --bash <($out/bin/doppler completion bash) \ --fish <($out/bin/doppler completion fish) \ --zsh <($out/bin/doppler completion zsh) ''; passthru.tests.version = testers.testVersion { package = doppler; version = "v${version}"; }; meta = with lib; { description = "The official CLI for interacting with your Doppler Enclave secrets and configuration"; homepage = "https://doppler.com"; license = licenses.asl20; maintainers = with maintainers; [ lucperkins ]; }; }