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 02:46:14 -04:00
stdenv.mkDerivation rec {
2017-05-16 11:41:50 -04:00
version = "1.2.4";
2015-04-05 02:46:14 -04:00
name = "zerotierone";
src = fetchurl {
url = "https://github.com/zerotier/ZeroTierOne/archive/${version}.tar.gz";
2017-05-16 11:41:50 -04:00
sha256 = "0n035f2qslw1srxjlm0szrnvb3va3sspbpxqqhng08dp68vmn9wz";
2015-04-05 02:46:14 -04:00
};
preConfigure = ''
substituteInPlace ./osdep/LinuxEthernetTap.cpp \
2016-06-30 06:12:20 -04:00
--replace 'execlp("ip",' 'execlp("${iproute}/bin/ip",'
2015-04-05 02:46:14 -04:00
2016-06-30 06:12:20 -04: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 02:46:14 -04:00
buildInputs = [ openssl lzo zlib iproute which ronn ];
2016-06-29 21:20:26 -04:00
2015-04-05 02:46:14 -04: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 06:12:20 -04: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 06:12:20 -04:00
done
2015-04-05 02:46:14 -04:00
'';
2016-06-30 06:12:20 -04:00
outputs = [ "out" "man" ];
meta = with stdenv.lib; {
2015-04-05 02:46:14 -04:00
description = "Create flat virtual Ethernet networks of almost unlimited size";
homepage = https://www.zerotier.com;
2016-06-30 06:12:20 -04:00
license = licenses.gpl3;
2017-05-16 11:41:50 -04:00
maintainers = with maintainers; [ sjmackenzie zimbatm ehmry ];
2016-06-30 06:12:20 -04:00
platforms = platforms.allBut [ "i686-linux" ];
2015-04-05 02:46:14 -04:00
};
}