2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchgit, fetchpatch, autoreconfHook, texinfo, ncurses, readline, zlib, lzo, openssl }:
|
2014-08-23 22:05:31 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "tinc";
|
2021-06-28 07:11:37 +01:00
|
|
|
version = "1.1pre18";
|
2014-08-23 22:05:31 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
2021-06-28 07:11:37 +01:00
|
|
|
rev = "release-${version}";
|
2014-08-23 22:05:31 +01:00
|
|
|
url = "git://tinc-vpn.org/tinc";
|
2021-06-28 07:11:37 +01:00
|
|
|
sha256 = "0a7d1xg34p54sv66lckn8rz2bpg7bl01najm2rxiwbsm956y7afm";
|
2014-08-23 22:05:31 +01:00
|
|
|
};
|
|
|
|
|
2017-07-11 10:14:14 +01:00
|
|
|
outputs = [ "out" "man" "info" ];
|
2016-05-03 18:39:53 +01:00
|
|
|
|
2015-09-04 19:54:51 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook texinfo ];
|
|
|
|
buildInputs = [ ncurses readline zlib lzo openssl ];
|
2014-08-23 22:05:31 +01:00
|
|
|
|
2017-09-14 21:12:08 +01: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 21:12:08 +01: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 22:05:31 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-08-23 22:05:31 +01:00
|
|
|
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;
|
2022-08-03 13:13:56 +01:00
|
|
|
maintainers = with maintainers; [ lassulus mic92 ];
|
2014-08-23 22:05:31 +01:00
|
|
|
};
|
|
|
|
}
|