linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / fastd / default.nix
blobed7bb0b01d3f0d99cc04e5249468bf2e1923f78b
1 { lib, stdenv, fetchFromGitHub, bison, meson, ninja, pkg-config
2 , libuecc, libsodium, libcap, json_c, openssl }:
4 stdenv.mkDerivation rec {
5   pname = "fastd";
6   version = "21";
8   src = fetchFromGitHub {
9     owner  = "Neoraider";
10     repo = "fastd";
11     rev = "v${version}";
12     sha256 = "1p4k50dk8byrghbr0fwmgwps8df6rlkgcd603r14i71m5g27z5gw";
13   };
15   nativeBuildInputs = [ pkg-config bison meson ninja ];
16   buildInputs = [ libuecc libsodium libcap json_c openssl ];
18   enableParallelBuilding = true;
20   meta = with lib; {
21     description = "Fast and Secure Tunneling Daemon";
22     homepage = "https://projects.universe-factory.net/projects/fastd/wiki";
23     license = with licenses; [ bsd2 bsd3 ];
24     platforms = platforms.linux;
25     maintainers = with maintainers; [ fpletz ];
26   };