lego 4.9.1 -> 4.10.0 https://repology.org/metapackage/lego/versions attrpath: lego Checking auto update branch... No auto update branch exists Old version 4.9.1" not present in master derivation file with contents: { lib, fetchFromGitHub, buildGoModule, nixosTests }: buildGoModule rec { pname = "lego"; version = "4.10.0"; src = fetchFromGitHub { owner = "go-acme"; repo = pname; rev = "v${version}"; sha256 = "sha256-FT1cXnMyMrEpZpTMp+kE8ueHReAYf2XQZ/9Nw53TYbg="; }; vendorSha256 = "sha256-Rf1HY2Q0t3iOuopnPRCkDKauWLFy9qhRh94QiwbDuOQ="; doCheck = false; subPackages = [ "cmd/lego" ]; ldflags = [ "-X main.version=${version}" ]; meta = with lib; { description = "Let's Encrypt client and ACME library written in Go"; license = licenses.mit; homepage = "https://go-acme.github.io/lego/"; maintainers = teams.acme.members; }; passthru.tests.lego = nixosTests.acme; }