From d14eb443838fde37ee33123618d9ee63dac18321 Mon Sep 17 00:00:00 2001 From: Florian Warzecha Date: Sun, 15 Oct 2023 14:51:45 +0200 Subject: [PATCH] vpn-slice: add iproute2,iptables to propagatedBuildInputs Those executables are needed for correct operation of vpn-slice during runtime. Otherwise the error message "cannot execute /sbin/ip" / "cannot execute /sbin/iptables" occurrs. --- pkgs/tools/networking/vpn-slice/default.nix | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/vpn-slice/default.nix b/pkgs/tools/networking/vpn-slice/default.nix index 3d883dca5b11..2bcb526b8670 100644 --- a/pkgs/tools/networking/vpn-slice/default.nix +++ b/pkgs/tools/networking/vpn-slice/default.nix @@ -1,4 +1,11 @@ -{ lib, buildPythonApplication, nix-update-script, python3Packages, fetchFromGitHub }: +{ lib +, buildPythonApplication +, nix-update-script +, python3Packages +, fetchFromGitHub +, iproute2 +, iptables +}: buildPythonApplication rec { pname = "vpn-slice"; @@ -11,7 +18,10 @@ buildPythonApplication rec { sha256 = "sha256-T6VULLNRLWO4OcAsuTmhty6H4EhinyxQSg0dfv2DUJs="; }; - propagatedBuildInputs = with python3Packages; [ setproctitle dnspython ]; + propagatedBuildInputs = with python3Packages; [ setproctitle dnspython ] ++ [ + iproute2 + iptables + ]; doCheck = false;