summary refs log tree commit diff
path: root/pkgs/tools/networking/vtun/default.nix
blob: e32ee43113eb448593bb393ebad916756cbfd0e0 (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
{stdenv, fetchurl, openssl, lzo, zlib, yacc, flex }:
stdenv.mkDerivation {
  name = "vtun-3.0.1";

  src = fetchurl {
    url = mirror://sourceforge/vtun/vtun-3.0.1.tar.gz;
    sha256 = "1sxf9qq2wlfh1wnrlqkh801v1m9jlqpycxvr2nbyyl7nm2cp8l12";
  };

  patchPhase = ''
    sed -i -e 's/-m 755//' -e 's/-o root -g 0//' Makefile.in 
  '';
  buildInputs = [ lzo openssl zlib yacc flex ];

  configureFlags = ''
    --with-lzo-headers=${lzo}/include/lzo
    --with-ssl-headers=${openssl}/include/openssl
    --with-blowfish-headers=${openssl}/include/openssl'';

  meta = { 
      description="Virtual Tunnels over TCP/IP with traffic shaping, compression and encryption";
      homepage="http://vtun.sourceforge.net/";
      license = stdenv.lib.licenses.gpl2;
  };
}