2017-06-26 01:17:20 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, nlohmann_json,
|
2018-04-19 12:21:25 +02:00
|
|
|
libtoxcore, libsodium, libcap, zeromq,
|
|
|
|
systemd ? null }:
|
2016-05-30 00:07:54 +02:00
|
|
|
|
2017-06-26 01:17:20 +02:00
|
|
|
with stdenv.lib;
|
2016-05-30 00:07:54 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2018-04-19 12:21:25 +02:00
|
|
|
name = "toxvpn-2018-04-17";
|
2016-05-30 00:07:54 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cleverca22";
|
|
|
|
repo = "toxvpn";
|
2018-04-19 12:21:25 +02:00
|
|
|
rev = "dc766f98888f500ea51f002f59007eac3f3a0a06";
|
|
|
|
sha256 = "19br3fmrdm45fvymj9kvwikkn8m657yd5fkhx6grv35ckrj83mxz";
|
2016-05-30 00:07:54 +02:00
|
|
|
};
|
|
|
|
|
2017-06-26 01:17:20 +02:00
|
|
|
buildInputs = [ libtoxcore nlohmann_json libsodium zeromq ]
|
2018-04-19 12:21:25 +02:00
|
|
|
++ optionals stdenv.isLinux [ libcap systemd ];
|
|
|
|
|
2017-02-14 07:59:59 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2016-05-30 00:07:54 +02:00
|
|
|
|
2017-02-14 07:59:59 +01:00
|
|
|
cmakeFlags = optional stdenv.isLinux [ "-DSYSTEMD=1" ];
|
2016-05-30 00:07:54 +02:00
|
|
|
|
2017-06-26 01:17:20 +02:00
|
|
|
postInstall = "$out/bin/toxvpn -h";
|
|
|
|
|
2016-05-30 15:23:25 +02:00
|
|
|
meta = with stdenv.lib; {
|
2016-05-30 00:07:54 +02:00
|
|
|
description = "A powerful tool that allows one to make tunneled point to point connections over Tox";
|
|
|
|
homepage = https://github.com/cleverca22/toxvpn;
|
|
|
|
license = licenses.gpl3;
|
2016-05-30 15:23:25 +02:00
|
|
|
maintainers = with maintainers; [ cleverca22 obadz ];
|
2017-06-26 01:17:20 +02:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2016-05-30 00:07:54 +02:00
|
|
|
};
|
|
|
|
}
|