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