carapace 0.29.1 -> 0.30.1 https://repology.org/project/carapace/versions attrpath: carapace Checking auto update branch... No auto update branch exists Old version 0.29.1" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, testers, carapace }: buildGoModule rec { pname = "carapace"; version = "0.30.1"; src = fetchFromGitHub { owner = "rsteube"; repo = "${pname}-bin"; rev = "v${version}"; hash = "sha256-2sf/S6i7f6pkjPEe0LaOJL6GtVNuRpGKXoRP4ZfDfX0="; }; vendorHash = "sha256-iIDtq+wRtBEV/gmGm4xSP87PT3pyUtto1d+nbHPzB04="; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; subPackages = [ "./cmd/carapace" ]; tags = [ "release" ]; preBuild = '' GOOS= GOARCH= go generate ./... ''; passthru.tests.version = testers.testVersion { package = carapace; }; meta = with lib; { description = "Multi-shell multi-command argument completer"; homepage = "https://rsteube.github.io/carapace-bin/"; maintainers = with maintainers; [ star-szr ]; license = licenses.mit; mainProgram = "carapace"; }; }