mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
32 lines
460 B
Nix
32 lines
460 B
Nix
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
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" ];
|
||
|
}
|