54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{ lib
|
|
, clang
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "dae";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "daeuniverse";
|
|
repo = "dae";
|
|
rev = "v${version}";
|
|
hash = "sha256-WiJqhXYehuUCLEuVbsQkmTntuH1srtePtZgYBSTbxiw=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
vendorHash = "sha256-fb4PEMhV8+5zaRJyl+nYi2BHcOUDUVAwxce2xaRt5JA=";
|
|
|
|
proxyVendor = true;
|
|
|
|
nativeBuildInputs = [ clang ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/daeuniverse/dae/cmd.Version=${version}"
|
|
"-X github.com/daeuniverse/dae/common/consts.MaxMatchSetLen_=64"
|
|
];
|
|
|
|
preBuild = ''
|
|
make CFLAGS="-D__REMOVE_BPF_PRINTK -fno-stack-protector -Wno-unused-command-line-argument" \
|
|
NOSTRIP=y \
|
|
ebpf
|
|
'';
|
|
|
|
# network required
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
install -Dm444 install/dae.service $out/lib/systemd/system/dae.service
|
|
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";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ oluceps pokon548 ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "dae";
|
|
};
|
|
}
|