Merge pull request #244129 from 1sixth/dae

dae: add support for geolocation databases
This commit is contained in:
Nick Cao 2023-07-19 05:58:56 -06:00 committed by GitHub
commit 1899ff0ca0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";