Files

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

68 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
bison,
meson,
ninja,
pkg-config,
libmnl,
libuecc,
libsodium,
libcap,
json_c,
openssl,
}:
stdenv.mkDerivation rec {
pname = "fastd";
version = "23";
src = fetchFromGitHub {
owner = "neocturne";
repo = "fastd";
rev = "v${version}";
sha256 = "sha256-Sz6VEjKziL/w2a4VWFfMPDYvm7UZh5A/NmzP10rJ2r8=";
};
nativeBuildInputs = [
bison
meson
ninja
pkg-config
];
buildInputs = [
json_c
libcap
libsodium
libuecc
openssl
]
++ lib.optionals (stdenv.hostPlatform.isLinux) [
libmnl
];
# some options are only available on x86
mesonFlags = lib.optionals (!stdenv.hostPlatform.isx86) [
"-Dcipher_salsa20_xmm=disabled"
"-Dcipher_salsa2012_xmm=disabled"
"-Dmac_ghash_pclmulqdq=disabled"
];
meta = with lib; {
description = "Fast and Secure Tunneling Daemon";
homepage = "https://projects.universe-factory.net/projects/fastd/wiki";
license = with licenses; [
bsd2
bsd3
];
platforms = platforms.linux;
maintainers = with maintainers; [
fpletz
herbetom
];
mainProgram = "fastd";
};
}