nixpkgs/pkgs/tools/networking/toxvpn/default.nix

34 lines
980 B
Nix
Raw Normal View History

2017-06-25 23:17:20 +00:00
{ stdenv, fetchFromGitHub, cmake, nlohmann_json,
2018-04-19 10:21:25 +00:00
libtoxcore, libsodium, libcap, zeromq,
systemd ? null }:
2017-06-25 23:17:20 +00:00
with stdenv.lib;
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2018-04-19 10:21:25 +00:00
name = "toxvpn-2018-04-17";
src = fetchFromGitHub {
owner = "cleverca22";
repo = "toxvpn";
2018-04-19 10:21:25 +00:00
rev = "dc766f98888f500ea51f002f59007eac3f3a0a06";
sha256 = "19br3fmrdm45fvymj9kvwikkn8m657yd5fkhx6grv35ckrj83mxz";
};
2017-06-25 23:17:20 +00:00
buildInputs = [ libtoxcore nlohmann_json libsodium zeromq ]
2018-04-19 10:21:25 +00:00
++ optionals stdenv.isLinux [ libcap systemd ];
2017-02-14 06:59:59 +00:00
nativeBuildInputs = [ cmake ];
2017-02-14 06:59:59 +00:00
cmakeFlags = optional stdenv.isLinux [ "-DSYSTEMD=1" ];
2017-06-25 23:17:20 +00:00
postInstall = "$out/bin/toxvpn -h";
meta = with stdenv.lib; {
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;
maintainers = with maintainers; [ cleverca22 obadz ];
2017-06-25 23:17:20 +00:00
platforms = platforms.linux ++ platforms.darwin;
};
}