fastd: init at 18
This commit is contained in:
parent
3b58daf315
commit
29bd3898a6
26
pkgs/tools/networking/fastd/default.nix
Normal file
26
pkgs/tools/networking/fastd/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchgit, cmake, bison, pkgconfig
|
||||||
|
, libuecc, libsodium, libcap, json_c }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "18";
|
||||||
|
name = "fastd-${version}";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "git://git.universe-factory.net/fastd";
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
sha256 = "0c9v3igv3812b3jr7jk75a2np658yy00b3i4kpbpdjgvqzc1jrq8";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig bison cmake ];
|
||||||
|
buildInputs = [ libuecc libsodium libcap json_c ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Fast and Secure Tunneling Daemon";
|
||||||
|
homepage = https://projects.universe-factory.net/projects/fastd/wiki;
|
||||||
|
license = with licenses; [ bsd2 bsd3 ];
|
||||||
|
platform = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ fpletz ];
|
||||||
|
};
|
||||||
|
}
|
@ -1567,6 +1567,8 @@ in
|
|||||||
pillow;
|
pillow;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fastd = callPackage ../tools/networking/fastd { };
|
||||||
|
|
||||||
fatsort = callPackage ../tools/filesystems/fatsort { };
|
fatsort = callPackage ../tools/filesystems/fatsort { };
|
||||||
|
|
||||||
fcitx = callPackage ../tools/inputmethods/fcitx {
|
fcitx = callPackage ../tools/inputmethods/fcitx {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user