dae: add support for geolocation databases

also installs a systemd service
This commit is contained in:
1sixth 2023-07-18 15:44:29 +08:00
parent fea8725bae
commit c9473da2a0
No known key found for this signature in database

View File

@ -1,7 +1,11 @@
{ lib
, clang
, fetchFromGitHub
, symlinkJoin
, buildGoModule
, makeWrapper
, v2ray-geoip
, v2ray-domain-list-community
}:
buildGoModule rec {
pname = "dae";
@ -19,7 +23,7 @@ buildGoModule rec {
proxyVendor = true;
nativeBuildInputs = [ clang ];
nativeBuildInputs = [ clang makeWrapper ];
ldflags = [
"-s"
@ -37,6 +41,19 @@ buildGoModule rec {
# network required
doCheck = false;
assetsDrv = symlinkJoin {
name = "dae-assets";
paths = [ v2ray-geoip v2ray-domain-list-community ];
};
postInstall = ''
install -Dm444 install/dae.service $out/lib/systemd/system/dae.service
wrapProgram $out/bin/dae \
--suffix DAE_LOCATION_ASSET : $assetsDrv/share/v2ray
substituteInPlace $out/lib/systemd/system/dae.service \
--replace /usr/bin/dae $out/bin/dae
'';
meta = with lib; {
description = "A Linux high-performance transparent proxy solution based on eBPF";
homepage = "https://github.com/daeuniverse/dae";