fastd: init at 18

This commit is contained in:
Franz Pletz 2016-10-13 21:41:22 +02:00
parent 3b58daf315
commit 29bd3898a6
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
2 changed files with 28 additions and 0 deletions

View 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 ];
};
}

View File

@ -1567,6 +1567,8 @@ in
pillow;
};
fastd = callPackage ../tools/networking/fastd { };
fatsort = callPackage ../tools/filesystems/fatsort { };
fcitx = callPackage ../tools/inputmethods/fcitx {