1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-08 22:10:47 +00:00

Toolchain: Add fuse2fs to serenity.nix

This previously missing package was needed for root-less image building
:)
This commit is contained in:
Baitinq 2023-02-06 16:28:31 +01:00 committed by Jelle Raaijmakers
parent 654950eaf7
commit 743f494a9c

View File

@ -12,6 +12,7 @@ stdenv.mkDerivation {
gmp gmp
libmpc libmpc
e2fsprogs e2fsprogs
fuse2fs
patch patch
ccache ccache
rsync rsync
@ -27,6 +28,7 @@ stdenv.mkDerivation {
xlibsWrapper xlibsWrapper
qemu qemu
e2fsprogs e2fsprogs
fuse2fs
]; ];
hardeningDisable = [ "format" "fortify" ]; hardeningDisable = [ "format" "fortify" ];