1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 07:40:45 +00:00
serenity/Toolchain/serenity.nix
Baitinq 743f494a9c Toolchain: Add fuse2fs to serenity.nix
This previously missing package was needed for root-less image building
:)
2023-02-11 00:06:55 +01:00

36 lines
522 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
stdenv.mkDerivation {
name = "cpp-env";
nativeBuildInputs = [
gcc12
curl
cmake
mpfr
ninja
gmp
libmpc
e2fsprogs
fuse2fs
patch
ccache
rsync
unzip
texinfo
# Example Build-time Additional Dependencies
pkg-config
];
buildInputs = [
# Example Run-time Additional Dependencies
openssl
libxcrypt
xlibsWrapper
qemu
e2fsprogs
fuse2fs
];
hardeningDisable = [ "format" "fortify" ];
}