clash-meta 1.14.2 -> 1.14.3 https://github.com/MetaCubeX/Clash.Meta/releases attrpath: clash-meta Checking auto update branch... No auto update branch exists Old version 1.14.2" not present in master derivation file with contents: { lib , fetchFromGitHub , buildGoModule }: buildGoModule rec { pname = "clash-meta"; version = "1.14.3"; src = fetchFromGitHub { owner = "MetaCubeX"; repo = "Clash.Meta"; rev = "v${version}"; # macOS has a case-insensitive filesystem, so these two can be the same file postFetch = '' rm -f $out/.github/workflows/{Delete,delete}.yml ''; hash = "sha256-HITuxnzzyHBJ3PlXHYR0M1r3x70AtwzAp1hQ6pX16Bo="; }; vendorHash = "sha256-D6b0U04wwDUzeIu3//E10YehohTzvyHWtK5Yzf3xrAI="; # Do not build testing suit excludedPackages = [ "./test" ]; ldflags = [ "-s" "-w" "-X github.com/Dreamacro/clash/constant.Version=${version}" ]; tags = [ "with_gvisor" ]; # network required doCheck = false; postInstall = '' mv $out/bin/clash $out/bin/clash-meta ''; meta = with lib; { description = "Another Clash Kernel"; homepage = "https://github.com/MetaCubeX/Clash.Meta"; license = licenses.gpl3Only; maintainers = with maintainers; [ oluceps ]; }; }