ladybird/Toolchain/serenity.nix

35 lines
507 B
Nix
Raw Normal View History

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