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