2019-07-30 18:19:15 +01:00
|
|
|
{ stdenv, fetchFromGitHub, openssl, lzo, zlib, iproute, which, ronn }:
|
2015-04-05 07:46:14 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-30 18:19:15 +01:00
|
|
|
pname = "zerotierone";
|
2019-10-16 19:57:18 +01:00
|
|
|
version = "1.4.6";
|
2019-07-30 18:19:15 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zerotier";
|
|
|
|
repo = "ZeroTierOne";
|
|
|
|
rev = version;
|
2019-10-16 19:57:18 +01:00
|
|
|
sha256 = "1f8hh05wx59dc0fbzdzwq05x0gmrdfl4v103wbcyjmzsbazaw6p3";
|
2015-04-05 07:46:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
2018-08-21 13:25:32 +01:00
|
|
|
substituteInPlace ./osdep/ManagedRoute.cpp \
|
|
|
|
--replace '/usr/sbin/ip' '${iproute}/bin/ip'
|
|
|
|
|
|
|
|
substituteInPlace ./osdep/ManagedRoute.cpp \
|
|
|
|
--replace '/sbin/ip' '${iproute}/bin/ip'
|
|
|
|
|
2016-06-30 11:12:20 +01:00
|
|
|
patchShebangs ./doc/build.sh
|
|
|
|
substituteInPlace ./doc/build.sh \
|
|
|
|
--replace '/usr/bin/ronn' '${ronn}/bin/ronn' \
|
|
|
|
--replace 'ronn -r' '${ronn}/bin/ronn -r'
|
|
|
|
'';
|
2015-04-05 07:46:14 +01:00
|
|
|
|
2016-06-30 12:28:50 +01:00
|
|
|
buildInputs = [ openssl lzo zlib iproute which ronn ];
|
2016-06-30 02:20:26 +01:00
|
|
|
|
2015-04-05 07:46:14 +01:00
|
|
|
installPhase = ''
|
2015-12-05 12:59:05 +00:00
|
|
|
install -Dt "$out/bin/" zerotier-one
|
2015-08-22 00:06:50 +01:00
|
|
|
ln -s $out/bin/zerotier-one $out/bin/zerotier-idtool
|
|
|
|
ln -s $out/bin/zerotier-one $out/bin/zerotier-cli
|
2016-06-30 11:12:20 +01:00
|
|
|
|
|
|
|
mkdir -p $man/share/man/man8
|
|
|
|
for cmd in zerotier-one.8 zerotier-cli.1 zerotier-idtool.1; do
|
2016-12-19 13:34:53 +00:00
|
|
|
cat doc/$cmd | gzip -9n > $man/share/man/man8/$cmd.gz
|
2016-06-30 11:12:20 +01:00
|
|
|
done
|
2015-04-05 07:46:14 +01:00
|
|
|
'';
|
|
|
|
|
2016-06-30 11:12:20 +01:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-04-05 07:46:14 +01:00
|
|
|
description = "Create flat virtual Ethernet networks of almost unlimited size";
|
|
|
|
homepage = https://www.zerotier.com;
|
2019-08-28 21:28:46 +01:00
|
|
|
license = licenses.bsl11;
|
2018-04-28 14:19:15 +01:00
|
|
|
maintainers = with maintainers; [ sjmackenzie zimbatm ehmry obadz ];
|
2018-03-13 22:00:52 +00:00
|
|
|
platforms = platforms.x86_64 ++ platforms.aarch64;
|
2015-04-05 07:46:14 +01:00
|
|
|
};
|
|
|
|
}
|