Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

79 lines
1.6 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
clang,
fetchFromGitHub,
buildGoModule,
versionCheckHook,
nixosTests,
nix-update-script,
}:
buildGoModule (finalAttrs: {
pname = "dae";
version = "1.0.0";
src = fetchFromGitHub {
owner = "daeuniverse";
repo = "dae";
tag = "v${finalAttrs.version}";
hash = "sha256-RpbWZEoGrCq3Py0hu6YDie6ErDTLS3oabqScPzhCtm0=";
fetchSubmodules = true;
};
vendorHash = "sha256-u2DCHmX7vRNWIQ2Ir3UrxPGduggEqoUr1rnkDfwsT0I=";
proxyVendor = true;
nativeBuildInputs = [ clang ];
hardeningDisable = [
"zerocallusedregs"
];
buildPhase = ''
runHook preBuild
make CFLAGS="-D__REMOVE_BPF_PRINTK -fno-stack-protector -Wno-unused-command-line-argument" \
NOSTRIP=y \
VERSION=${finalAttrs.version} \
OUTPUT=$out/bin/dae
runHook postBuild
'';
# network required
doCheck = false;
postInstall = ''
install -Dm444 install/dae.service $out/lib/systemd/system/dae.service
substituteInPlace $out/lib/systemd/system/dae.service \
--replace-fail "/usr/bin/dae" "$out/bin/dae"
'';
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgramArg = "--version";
passthru = {
tests = {
inherit (nixosTests) dae;
};
updateScript = nix-update-script { };
};
meta = {
description = "Linux high-performance transparent proxy solution based on eBPF";
homepage = "https://github.com/daeuniverse/dae";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [
oluceps
pokon548
luochen1990
];
platforms = lib.platforms.linux;
mainProgram = "dae";
};
})