mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, pkgsBuildBuild, fetchFromGitHub, lib, nix-update-script }:
|
|
|
|
let
|
|
generator = pkgsBuildBuild.buildGoModule rec {
|
|
pname = "v2ray-domain-list-community";
|
|
version = "20240810010807";
|
|
src = fetchFromGitHub {
|
|
owner = "v2fly";
|
|
repo = "domain-list-community";
|
|
rev = version;
|
|
hash = "sha256-pxb29QO1K9e4CwAAdNUi6jxoiXhJYELqnu/A7DuB0zQ=";
|
|
};
|
|
vendorHash = "sha256-NLh14rXRci4hgDkBJVJDIDvobndB7KYRKAX7UjyqSsg=";
|
|
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
|
|
runHook postBuild
|
|
'';
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -Dm644 dlc.dat $out/share/v2ray/geosite.dat
|
|
runHook postInstall
|
|
'';
|
|
passthru = {
|
|
inherit generator;
|
|
updateScript = nix-update-script { };
|
|
};
|
|
}
|