3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/fastd/default.nix

59 lines
1.1 KiB
Nix
Raw Normal View History

2021-04-27 13:22:18 +01:00
{ lib
, stdenv
, fetchFromGitHub
, bison
, meson
, ninja
, pkg-config
, libmnl
2021-04-27 13:22:18 +01:00
, libuecc
, libsodium
, libcap
, json_c
, openssl
}:
2016-10-13 20:41:22 +01:00
stdenv.mkDerivation rec {
pname = "fastd";
version = "22";
2016-10-13 20:41:22 +01:00
2020-05-23 09:21:30 +01:00
src = fetchFromGitHub {
owner = "Neoraider";
repo = "fastd";
rev = "v${version}";
sha256 = "0qni32j7d3za9f87m68wq8zgalvfxdrx1zxi6l4x7vvmpcw5nhpq";
2016-10-13 20:41:22 +01:00
};
2021-04-27 13:22:18 +01:00
nativeBuildInputs = [
bison
meson
ninja
pkg-config
];
buildInputs = [
json_c
libcap
libsodium
libuecc
openssl
] ++ lib.optionals (stdenv.isLinux) [
libmnl
2021-04-27 13:22:18 +01:00
];
# some options are only available on x86
mesonFlags = lib.optionals (!stdenv.isx86_64 && !stdenv.isi686) [
"-Dcipher_salsa20_xmm=disabled"
"-Dcipher_salsa2012_xmm=disabled"
"-Dmac_ghash_pclmulqdq=disabled"
];
2020-05-23 09:21:30 +01:00
meta = with lib; {
2016-10-13 20:41:22 +01:00
description = "Fast and Secure Tunneling Daemon";
homepage = "https://projects.universe-factory.net/projects/fastd/wiki";
2016-10-13 20:41:22 +01:00
license = with licenses; [ bsd2 bsd3 ];
2016-10-13 21:02:36 +01:00
platforms = platforms.linux;
2016-10-13 20:41:22 +01:00
maintainers = with maintainers; [ fpletz ];
};
}