mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
110dfca988
New code in zerotier broke the previous substitution where we refer to the correct path for "ip".
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ stdenv, fetchurl, openssl, lzo, zlib, gcc, iproute }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.1.4";
|
|
name = "zerotierone";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/zerotier/ZeroTierOne/archive/${version}.tar.gz";
|
|
sha256 = "10aw0dlkmprdvph3aqkqximxqkryf0l4jcnv2bbm7f1qvclqihva";
|
|
};
|
|
|
|
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",'
|
|
'';
|
|
|
|
buildInputs = [ openssl lzo zlib gcc iproute ];
|
|
|
|
installPhase = ''
|
|
installBin zerotier-one
|
|
ln -s $out/bin/zerotier-one $out/bin/zerotier-idtool
|
|
ln -s $out/bin/zerotier-one $out/bin/zerotier-cli
|
|
'';
|
|
|
|
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" ];
|
|
};
|
|
}
|