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

50 lines
1.4 KiB
Nix
Raw Normal View History

2019-07-30 17:19:15 +00:00
{ stdenv, fetchFromGitHub, openssl, lzo, zlib, iproute, which, ronn }:
2015-04-05 06:46:14 +00:00
stdenv.mkDerivation rec {
2019-07-30 17:19:15 +00:00
pname = "zerotierone";
version = "1.4.6";
2019-07-30 17:19:15 +00:00
src = fetchFromGitHub {
owner = "zerotier";
repo = "ZeroTierOne";
rev = version;
sha256 = "1f8hh05wx59dc0fbzdzwq05x0gmrdfl4v103wbcyjmzsbazaw6p3";
2015-04-05 06:46:14 +00: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 10:12:20 +00: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 06:46:14 +00:00
buildInputs = [ openssl lzo zlib iproute which ronn ];
2016-06-30 01:20:26 +00:00
2015-04-05 06:46:14 +00: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 10:12:20 +00: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 10:12:20 +00:00
done
2015-04-05 06:46:14 +00:00
'';
2016-06-30 10:12:20 +00:00
outputs = [ "out" "man" ];
meta = with stdenv.lib; {
2015-04-05 06:46:14 +00:00
description = "Create flat virtual Ethernet networks of almost unlimited size";
homepage = https://www.zerotier.com;
2019-08-28 20:28:46 +00:00
license = licenses.bsl11;
2018-04-28 13:19:15 +00:00
maintainers = with maintainers; [ sjmackenzie zimbatm ehmry obadz ];
platforms = platforms.x86_64 ++ platforms.aarch64;
2015-04-05 06:46:14 +00:00
};
}