3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/zerotierone/default.nix

45 lines
1.3 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 {
2016-12-27 17:44:57 +00:00
version = "1.1.14";
2015-04-05 07:46:14 +01:00
name = "zerotierone";
src = fetchurl {
url = "https://github.com/zerotier/ZeroTierOne/archive/${version}.tar.gz";
2016-12-27 17:44:57 +00:00
sha256 = "1brlyqk2p5h9sws15nbkmm4qhx911aib1v7crmcm2rhwsad0c1nj";
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;
2016-12-27 17:44:57 +00:00
maintainers = with maintainers; [ sjmackenzie zimbatm ];
2016-06-30 11:12:20 +01:00
platforms = platforms.allBut [ "i686-linux" ];
2015-04-05 07:46:14 +01:00
};
}