mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-07 20:31:04 +03:00
40 lines
530 B
Nix
40 lines
530 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
with pkgs;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "cpp-env";
|
|
nativeBuildInputs = [
|
|
ccache
|
|
cmake
|
|
curl
|
|
e2fsprogs
|
|
fuse2fs
|
|
gcc13
|
|
gmp
|
|
# To create port launcher icons
|
|
imagemagick
|
|
libmpc
|
|
mpfr
|
|
ninja
|
|
patch
|
|
pkg-config
|
|
rsync
|
|
texinfo
|
|
unzip
|
|
];
|
|
|
|
buildInputs = [
|
|
e2fsprogs
|
|
fuse2fs
|
|
# To build the GRUB disk image
|
|
grub2
|
|
libxcrypt
|
|
openssl
|
|
parted
|
|
qemu
|
|
python3
|
|
];
|
|
|
|
hardeningDisable = [ "format" "fortify" ];
|
|
}
|