From 46e4e8ad839bfe5ef520a66d4e5665a546c5169e Mon Sep 17 00:00:00 2001 From: Florian Warzecha Date: Mon, 16 Oct 2023 17:03:05 +0200 Subject: [PATCH] vpn-slice: fix propagated dependencies on darwin vpn-slice has different requirements for externally available commands depending on the os: > Supported OSes: > - Linux kernel 3.x+ with iproute2 and iptables utilities (used for all routing setup) > - macOS 10.x with BSD route --- pkgs/tools/networking/vpn-slice/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/vpn-slice/default.nix b/pkgs/tools/networking/vpn-slice/default.nix index 2bcb526b8670..3fcc0787b184 100644 --- a/pkgs/tools/networking/vpn-slice/default.nix +++ b/pkgs/tools/networking/vpn-slice/default.nix @@ -1,10 +1,12 @@ { lib +, stdenv , buildPythonApplication , nix-update-script , python3Packages , fetchFromGitHub , iproute2 , iptables +, unixtools }: buildPythonApplication rec { @@ -18,10 +20,13 @@ buildPythonApplication rec { sha256 = "sha256-T6VULLNRLWO4OcAsuTmhty6H4EhinyxQSg0dfv2DUJs="; }; - propagatedBuildInputs = with python3Packages; [ setproctitle dnspython ] ++ [ - iproute2 - iptables - ]; + propagatedBuildInputs = with python3Packages; [ setproctitle dnspython ] + ++ lib.optionals stdenv.isLinux [ + iproute2 + iptables + ] ++ lib.optionals stdenv.isDarwin [ + unixtools.route + ]; doCheck = false;