nixpkgs/pkgs/tools/networking/tinc/pre.nix
William A. Kennington III 371de847ed tinc_pre: 199573 -> d28f332
2015-01-02 10:43:55 -08:00

33 lines
1.0 KiB
Nix

{ stdenv, fetchgit, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }:
stdenv.mkDerivation rec {
name = "tinc-1.1pred28f332";
src = fetchgit {
url = "git://tinc-vpn.org/tinc";
rev = "d28f33228635e78dac8f9e9bcaec92690f2ca10a";
sha256 = "183s5snxlip6pc2akj330527i5qgdfngvi078qcvwpf61cxgab6s";
};
buildInputs = [ autoreconfHook texinfo ncurses readline zlib lzo openssl ];
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
];
meta = with stdenv.lib; {
description = "VPN daemon with full mesh routing";
longDescription = ''
tinc is a Virtual Private Network (VPN) daemon that uses tunnelling and
encryption to create a secure private network between hosts on the
Internet. It features full mesh routing, as well as encryption,
authentication, compression and ethernet bridging.
'';
homepage="http://www.tinc-vpn.org/";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
};
}