From 32335ead3d99149c91d4f6828658b0b50eacb6d5 Mon Sep 17 00:00:00 2001 From: Souvik Sen Date: Thu, 6 Jun 2024 08:52:55 -0400 Subject: [PATCH] buildah: add passt as runtime input via CONTAINERS_HELPER_BINARY_DIR Buildah added support for pasta as an option in --network. (https://github.com/containers/buildah/commit/74b885b9e23f6e4d973ac7f521c16b02d7676789) Fixes failures happening with: error running container: did not get container start message from parent: EOF Error: setup network: could not find pasta, the network namespace can't be configured: exec: "pasta": executable file not found in $PATH --- pkgs/development/tools/buildah/wrapper.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/tools/buildah/wrapper.nix b/pkgs/development/tools/buildah/wrapper.nix index 7b9a672d6993..b5042ae1b827 100644 --- a/pkgs/development/tools/buildah/wrapper.nix +++ b/pkgs/development/tools/buildah/wrapper.nix @@ -14,6 +14,7 @@ , iptables , aardvark-dns , netavark +, passt }: let @@ -36,6 +37,7 @@ let ] ++ lib.optionals stdenv.isLinux [ aardvark-dns netavark + passt ]; };