nixpkgs/pkgs/tools/networking/tinc/pre.nix
William A. Kennington III 37bb586452 tinc-pre: Update to ae5b56c
2015-01-12 15:25:53 -08:00

33 lines
1 KiB
Nix

{ stdenv, fetchgit, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }:
stdenv.mkDerivation rec {
name = "tinc-1.1preae5b56c";
src = fetchgit {
url = "git://tinc-vpn.org/tinc";
rev = "ae5b56c03d1e1af7561d7f1d1d8a333c3a9691ff";
sha256 = "052bli42b5mc6w74wr129yj2jagpds03zckxqiqv7wr8d38swmm7";
};
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 ];
};
}