v2ray-domain-list-community 20230407083123 -> 20230516143757 https://repology.org/project/v2ray-domain-list-community/versions attrpath: v2ray-domain-list-community Checking auto update branch... No auto update branch exists Old version 20230407083123" not present in master derivation file with contents: { stdenv, pkgsBuildBuild, fetchFromGitHub, lib }: let generator = pkgsBuildBuild.buildGoModule rec { pname = "v2ray-domain-list-community"; version = "20230517022917"; src = fetchFromGitHub { owner = "v2fly"; repo = "domain-list-community"; rev = version; hash = "sha256-oRmVJyDfdJhAdF9nJrJs2SjoUs1pr39/xcCps5d3WyM="; }; vendorHash = "sha256-zkf2neI1HiPkCrcw+cYoZ2L/OGkM8HPIv5gUqc05Wak="; meta = with lib; { description = "community managed domain list"; homepage = "https://github.com/v2fly/domain-list-community"; license = licenses.mit; maintainers = with maintainers; [ nickcao ]; }; }; in stdenv.mkDerivation { inherit (generator) pname version src meta; buildPhase = '' runHook preBuild ${generator}/bin/domain-list-community -datapath $src/data --exportlists=category-ads-all,tld-cn,cn,tld-\!cn,geolocation-\!cn,apple,icloud runHook postBuild ''; installPhase = '' runHook preInstall install -Dm644 dlc.dat $out/share/v2ray/geosite.dat runHook postInstall ''; passthru.generator = generator; }