From 0124d731ce8e380fc189b025dd3642dea87076eb Mon Sep 17 00:00:00 2001 From: Ali Caglayan Date: Thu, 31 Aug 2023 15:35:33 +0100 Subject: [PATCH] Toolchain: Remove xlibswrapper and add python3 to serenity.nix xlibswrapper is removed from `Toolchain/serenity.nix` as it is a wrapper package and has been deprecated. We don't use it in the build anyway. This fixes #19286 During the build, python3 is required so we add `python3` as a build dependency. --- Toolchain/serenity.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Toolchain/serenity.nix b/Toolchain/serenity.nix index 19546f3396..a6ee7e4d64 100644 --- a/Toolchain/serenity.nix +++ b/Toolchain/serenity.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation { openssl parted qemu - xlibsWrapper + python3 ]; hardeningDisable = [ "format" "fortify" ];