From 9d8e6c29d2fb517e05d5b14f3c758f8e59e66356 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 6 Aug 2022 17:07:09 +0100 Subject: [PATCH] python3Packages.pyunbound: inherit patches from unbound if present --- pkgs/tools/networking/unbound/python.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/networking/unbound/python.nix b/pkgs/tools/networking/unbound/python.nix index 067f5d2b417b..94f2374d904d 100644 --- a/pkgs/tools/networking/unbound/python.nix +++ b/pkgs/tools/networking/unbound/python.nix @@ -6,6 +6,7 @@ in stdenv.mkDerivation rec { pname = "pyunbound"; inherit (unbound) version src; + patches = unbound.patches or null; nativeBuildInputs = [ swig ];