nixpkgs/pkgs/tools/networking/tinc/pre.nix
William A. Kennington III 7c605db462 tinc_pre: Update to f57d53c
2014-11-03 14:21:30 -08:00

33 lines
1 KiB
Nix

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