mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
743f494a9c
This previously missing package was needed for root-less image building :)
36 lines
522 B
Nix
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" ];
|
|
}
|