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

41 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, lzo, zlib, gcc, iproute }:
2015-04-05 08:46:14 +02:00
with stdenv.lib;
stdenv.mkDerivation rec {
2016-06-30 03:20:26 +02:00
version = "1.1.6";
2015-04-05 08:46:14 +02:00
name = "zerotierone";
src = fetchurl {
url = "https://github.com/zerotier/ZeroTierOne/archive/${version}.tar.gz";
2016-06-30 03:20:26 +02:00
sha256 = "1bl8dppaqydsd1qf9pk3bp16amkwjxyqh1gvm62ys2a0m4c529ks";
2015-04-05 08:46:14 +02:00
};
preConfigure = ''
substituteInPlace ./make-linux.mk \
--replace 'CC=$(shell which clang gcc cc 2>/dev/null | head -n 1)' "CC=${gcc}/bin/gcc";
substituteInPlace ./make-linux.mk \
--replace 'CXX=$(shell which clang++ g++ c++ 2>/dev/null | head -n 1)' "CC=${gcc}/bin/g++";
substituteInPlace ./osdep/LinuxEthernetTap.cpp \
--replace 'execlp("ip",' 'execlp("${iproute}/bin/ip",'
2015-04-05 08:46:14 +02:00
'';
buildInputs = [ openssl lzo zlib gcc iproute ];
2015-04-05 08:46:14 +02:00
2016-06-30 03:20:26 +02:00
buildFlags = [ "one" ]; # TODO: Add support for building and installing manpages as well.
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
2015-04-05 08:46:14 +02:00
'';
meta = {
description = "Create flat virtual Ethernet networks of almost unlimited size";
homepage = https://www.zerotier.com;
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.sjmackenzie ];
platforms = with stdenv.lib; platforms.allBut [ "i686-linux" ];
2015-04-05 08:46:14 +02:00
};
}