sq 0.18.2 -> 0.24.0 https://github.com/neilotoole/sq/releases attrpath: sq Checking auto update branch... An auto update branch exists with message `sq: 0.18.2 -> 0.20.0`. New version is 0.24.0. The auto update branch does not match or exceed the new version. Old version 0.18.2" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, sq }: buildGoModule rec { pname = "sq"; version = "0.20.0"; src = fetchFromGitHub { owner = "neilotoole"; repo = pname; rev = "v${version}"; sha256 = "sha256-mJp4lb4pzjdjodHk2zLAEePn+oIPI/vTtU0YOIbmWDY="; }; vendorSha256 = "sha256-8kk+KCanbnsizGRjF3qcxCBxC7Sx0zfptQFTETZp89E="; proxyVendor = true; nativeBuildInputs = [ installShellFiles ]; # Some tests violates sandbox constraints. doCheck = false; ldflags = [ "-s" "-w" "-X=github.com/neilotoole/sq/cli/buildinfo.Version=${version}" ]; postInstall = '' installShellCompletion --cmd sq \ --bash <($out/bin/sq completion bash) \ --fish <($out/bin/sq completion fish) \ --zsh <($out/bin/sq completion zsh) ''; passthru.tests = { version = testers.testVersion { package = sq; }; }; meta = with lib; { description = "Swiss army knife for data"; homepage = "https://sq.io/"; license = licenses.mit; platforms = platforms.all; maintainers = with maintainers; [ raitobezarius ]; }; }