nixpkgs/pkgs/tools/networking/zerotierone/default.nix

53 lines
1.5 KiB
Nix
Raw Normal View History

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