ladybird/Toolchain/serenity.nix
networkException b5e9b9a939 Toolchain: Add qt6.qt{base,svg} to serenity.nix
This is required for building ladybird.
2023-06-02 20:05:51 +02:00

42 lines
564 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
stdenv.mkDerivation {
name = "cpp-env";
nativeBuildInputs = [
ccache
cmake
curl
e2fsprogs
fuse2fs
gcc12
gmp
# To create port launcher icons
imagemagick
libmpc
mpfr
ninja
patch
pkg-config
qt6.qtbase
qt6.qtsvg
rsync
texinfo
unzip
];
buildInputs = [
e2fsprogs
fuse2fs
# To build the GRUB disk image
grub2
libxcrypt
openssl
parted
qemu
xlibsWrapper
];
hardeningDisable = [ "format" "fortify" ];
}