From 52fb8fe470c599ae61f49eb0ccec0414cee4dfa1 Mon Sep 17 00:00:00 2001 From: Evils Date: Tue, 27 Feb 2024 14:18:17 +0100 Subject: [PATCH] wxGTK32: repro build and disable rpath disable rpath is currently required for their master branch as that retains the build directory in rpath patchPhase seemingly can't deal with that --- pkgs/development/libraries/wxwidgets/wxGTK32.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/wxwidgets/wxGTK32.nix b/pkgs/development/libraries/wxwidgets/wxGTK32.nix index 5bba7315f5cc..3094f253a01a 100644 --- a/pkgs/development/libraries/wxwidgets/wxGTK32.nix +++ b/pkgs/development/libraries/wxwidgets/wxGTK32.nix @@ -109,6 +109,8 @@ stdenv.mkDerivation rec { "--disable-monolithic" "--enable-mediactrl" "--with-nanosvg" + "--disable-rpath" + "--enable-repro-build" (if compat28 then "--enable-compat28" else "--disable-compat28") (if compat30 then "--enable-compat30" else "--disable-compat30") ] ++ lib.optional unicode "--enable-unicode"