summary refs log tree commit diff
path: root/pkgs/tools/networking/toxvpn/default.nix
blob: ccb9f3bc0d6b6375d1dc049554672b71224eb6c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, fetchFromGitHub, cmake, nlohmann_json,
  libtoxcore, libsodium, libcap, zeromq,
  systemd ? null }:

with stdenv.lib;

stdenv.mkDerivation rec {
  name = "toxvpn-2018-04-17";

  src = fetchFromGitHub {
    owner  = "cleverca22";
    repo   = "toxvpn";
    rev    = "dc766f98888f500ea51f002f59007eac3f3a0a06";
    sha256 = "19br3fmrdm45fvymj9kvwikkn8m657yd5fkhx6grv35ckrj83mxz";
  };

  buildInputs = [ libtoxcore nlohmann_json libsodium zeromq ]
    ++ optionals stdenv.isLinux [ libcap systemd ];

  nativeBuildInputs = [ cmake ];

  cmakeFlags = optional stdenv.isLinux [ "-DSYSTEMD=1" ];

  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 ];
    platforms   = platforms.linux ++ platforms.darwin;
  };
}