diff --git a/Toolchain/serenity.nix b/Toolchain/serenity.nix index 3f70aab34f2..3f6cab72ed8 100644 --- a/Toolchain/serenity.nix +++ b/Toolchain/serenity.nix @@ -16,16 +16,22 @@ stdenv.mkDerivation { ccache rsync unzip - + texinfo # Example Build-time Additional Dependencies pkgconfig ]; buildInputs = [ # Example Run-time Additional Dependencies openssl - x11 + xlibsWrapper qemu + # e2fsprogs needs some optional parameter to activate fuse2fs with which + # the qemu image will be mounted without root access. + (e2fsprogs.overrideAttrs (oldAttrs: { + buildInputs = oldAttrs.buildInputs ++ [ pkgs.fuse ]; + })) # glibc ]; + hardeningDisable = [ "format" "fortify" ]; }