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

28 lines
785 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, bison, meson, ninja, pkg-config
2020-05-23 09:21:30 +01:00
, libuecc, libsodium, libcap, json_c, openssl }:
2016-10-13 20:41:22 +01:00
stdenv.mkDerivation rec {
pname = "fastd";
2020-10-19 21:07:35 +01:00
version = "21";
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}";
2020-10-19 21:07:35 +01:00
sha256 = "1p4k50dk8byrghbr0fwmgwps8df6rlkgcd603r14i71m5g27z5gw";
2016-10-13 20:41:22 +01:00
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config bison meson ninja ];
2020-05-23 09:21:30 +01:00
buildInputs = [ libuecc libsodium libcap json_c openssl ];
2016-10-13 20:41:22 +01:00
enableParallelBuilding = true;
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 ];
};
}