2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchgit, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }:
|
2014-08-23 21:05:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-12-18 10:39:45 +00:00
|
|
|
name = "tinc-${version}";
|
2018-10-08 14:51:37 +00:00
|
|
|
version = "1.1pre17";
|
2014-08-23 21:05:31 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
2016-05-03 17:39:53 +00:00
|
|
|
rev = "refs/tags/release-${version}";
|
2014-08-23 21:05:31 +00:00
|
|
|
url = "git://tinc-vpn.org/tinc";
|
2018-10-08 14:51:37 +00:00
|
|
|
sha256 = "12abmx9qglchgn94a1qwgzldf2kaz77p8705ylpggzyncxv6bw2q";
|
2014-08-23 21:05:31 +00:00
|
|
|
};
|
|
|
|
|
2017-07-11 09:14:14 +00:00
|
|
|
outputs = [ "out" "man" "info" ];
|
2016-05-03 17:39:53 +00:00
|
|
|
|
2015-09-04 18:54:51 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook texinfo ];
|
|
|
|
buildInputs = [ ncurses readline zlib lzo openssl ];
|
2014-08-23 21:05:31 +00:00
|
|
|
|
2017-09-14 20:12:08 +00:00
|
|
|
# needed so the build doesn't need to run git to find out the version.
|
2015-12-18 10:39:45 +00:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace configure.ac --replace UNKNOWN ${version}
|
2017-09-14 20:12:08 +00:00
|
|
|
echo "${version}" > configure-version
|
|
|
|
echo "https://tinc-vpn.org/git/browse?p=tinc;a=log;h=refs/tags/release-${version}" > ChangeLog
|
|
|
|
sed -i '/AC_INIT/s/m4_esyscmd_s.*/${version})/' configure.ac
|
2015-12-18 10:39:45 +00:00
|
|
|
'';
|
|
|
|
|
2014-08-23 21:05:31 +00:00
|
|
|
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;
|
2017-09-14 20:12:08 +00:00
|
|
|
maintainers = with maintainers; [ wkennington fpletz lassulus ];
|
2014-08-23 21:05:31 +00:00
|
|
|
};
|
|
|
|
}
|