2022-12-09T10:34:48 clash 1.11.4 -> 1.12.0 https://repology.org/metapackage/clash/versions 2022-12-09T10:34:50 attrpath: clash 2022-12-09T10:34:50 Checking auto update branch... 2022-12-09T10:34:50 No auto update branch exists 2022-12-09T10:34:51 Old version 1.11.4" not present in master derivation file with contents: { lib, fetchFromGitHub, buildGoModule, testers, clash }: buildGoModule rec { pname = "clash"; version = "1.12.0"; src = fetchFromGitHub { owner = "Dreamacro"; repo = pname; rev = "v${version}"; sha256 = "sha256-SE+nZIatvwyc6JubMb7YUlNiJv+LYtJjFMlKEoJzEn8="; }; vendorSha256 = "sha256-ikcGZ1Gfxb4zBkav8MDi3+xNbvhqHIk6NhLfI2ne3ns="; # Do not build testing suit excludedPackages = [ "./test" ]; CGO_ENABLED = 0; ldflags = [ "-s" "-w" "-X github.com/Dreamacro/clash/constant.Version=${version}" ]; passthru.tests.version = testers.testVersion { package = clash; command = "clash -v"; }; meta = with lib; { description = "A rule-based tunnel in Go"; homepage = "https://github.com/Dreamacro/clash"; license = licenses.gpl3Only; maintainers = with maintainers; [ contrun Br1ght0ne ]; }; }