1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 14:41:17 +00:00
nixpkgs/pkgs/tools/networking/zerotierone/default.nix

45 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, lzo, zlib, iproute, which, ronn }:
2015-04-05 07:46:14 +01:00
stdenv.mkDerivation rec {
version = "1.2.12";
name = "zerotierone-${version}";
2015-04-05 07:46:14 +01:00
src = fetchurl {
url = "https://github.com/zerotier/ZeroTierOne/archive/${version}.tar.gz";
sha256 = "1m7ynrgzpg2sp37hcmjkx6w173icfhakzn1c1zrdzrxmmszrj9r1";
2015-04-05 07:46:14 +01:00
};
preConfigure = ''
substituteInPlace ./osdep/LinuxEthernetTap.cpp \
2016-06-30 11:12:20 +01:00
--replace 'execlp("ip",' 'execlp("${iproute}/bin/ip",'
2015-04-05 07:46:14 +01:00
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
buildInputs = [ openssl lzo zlib iproute which ronn ];
2016-06-30 02:20:26 +01:00
2015-04-05 07:46:14 +01: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 11:12:20 +01: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 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;
2016-06-30 11:12:20 +01:00
license = licenses.gpl3;
2018-04-28 14:19:15 +01:00
maintainers = with maintainers; [ sjmackenzie zimbatm ehmry obadz ];
platforms = platforms.x86_64 ++ platforms.aarch64;
2015-04-05 07:46:14 +01:00
};
}