From 1657a46ee70a1e8e4169d434cc370af95f64af65 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Thu, 16 Mar 2023 18:47:06 +0000 Subject: [PATCH] Toolchain: Add grub2 and parted to serenity.nix This allows building the GRUB disk image from within the nix shell. --- Toolchain/serenity.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Toolchain/serenity.nix b/Toolchain/serenity.nix index ed3011ad4a..1c515cbe87 100644 --- a/Toolchain/serenity.nix +++ b/Toolchain/serenity.nix @@ -29,6 +29,9 @@ stdenv.mkDerivation { qemu e2fsprogs fuse2fs + # To build the GRUB disk image + grub2 + parted ]; hardeningDisable = [ "format" "fortify" ];