mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
c28898dc70
Add some substitutions for the ip calls in ManagedRoutes. Fixes #45022
51 lines
1.6 KiB
Nix
51 lines
1.6 KiB
Nix
{ stdenv, fetchurl, openssl, lzo, zlib, iproute, which, ronn }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.2.12";
|
|
name = "zerotierone-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/zerotier/ZeroTierOne/archive/${version}.tar.gz";
|
|
sha256 = "1m7ynrgzpg2sp37hcmjkx6w173icfhakzn1c1zrdzrxmmszrj9r1";
|
|
};
|
|
|
|
preConfigure = ''
|
|
substituteInPlace ./osdep/ManagedRoute.cpp \
|
|
--replace '/usr/sbin/ip' '${iproute}/bin/ip'
|
|
|
|
substituteInPlace ./osdep/ManagedRoute.cpp \
|
|
--replace '/sbin/ip' '${iproute}/bin/ip'
|
|
|
|
substituteInPlace ./osdep/LinuxEthernetTap.cpp \
|
|
--replace 'execlp("ip",' 'execlp("${iproute}/bin/ip",'
|
|
|
|
patchShebangs ./doc/build.sh
|
|
substituteInPlace ./doc/build.sh \
|
|
--replace '/usr/bin/ronn' '${ronn}/bin/ronn' \
|
|
--replace 'ronn -r' '${ronn}/bin/ronn -r'
|
|
'';
|
|
|
|
buildInputs = [ openssl lzo zlib iproute which ronn ];
|
|
|
|
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
|
|
|
|
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
|
|
done
|
|
'';
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Create flat virtual Ethernet networks of almost unlimited size";
|
|
homepage = https://www.zerotier.com;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ sjmackenzie zimbatm ehmry obadz ];
|
|
platforms = platforms.x86_64 ++ platforms.aarch64;
|
|
};
|
|
}
|