diff --git a/tests/run-nix b/tests/run-nix index b23f19d..a783891 100755 --- a/tests/run-nix +++ b/tests/run-nix @@ -25,10 +25,14 @@ in pkgs.umockdev.overrideAttrs (attrs: { patches = []; preCheck = ""; doCheck = true; - nativeBuildInputs = attrs.nativeBuildInputs ++ [ ${DEBUG:+pkgs.breakpointHook} ]; - # git is a "meson dist" time dependency - # libpcap is a new dependency, it can be removed again later - buildInputs = attrs.buildInputs ++ [ pkgs.git pkgs.libpcap ]; + nativeBuildInputs = attrs.nativeBuildInputs ++ [ + ${DEBUG:+pkgs.breakpointHook} + # git is a "meson dist" time dependency + pkgs.git + ]; + buildInputs = attrs.buildInputs ++ [ + # Add new runtime (executable on host) dependencies here. + ]; }) EOG