mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 10:18:15 +09:00
Toolchain: Sort packages in {nativeB,b}uildInputs nix lists
This commit is contained in:
parent
76611790e9
commit
43182285fd
Notes:
sideshowbarker
2024-07-17 02:06:40 +09:00
Author: https://github.com/networkException
Commit: 43182285fd
Pull-request: https://github.com/SerenityOS/serenity/pull/19224
Reviewed-by: https://github.com/linusg
1 changed files with 17 additions and 16 deletions
|
@ -4,34 +4,35 @@ with pkgs;
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "cpp-env";
|
name = "cpp-env";
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
gcc12
|
ccache
|
||||||
curl
|
|
||||||
cmake
|
cmake
|
||||||
mpfr
|
curl
|
||||||
ninja
|
|
||||||
gmp
|
|
||||||
libmpc
|
|
||||||
e2fsprogs
|
e2fsprogs
|
||||||
fuse2fs
|
fuse2fs
|
||||||
patch
|
gcc12
|
||||||
ccache
|
gmp
|
||||||
rsync
|
|
||||||
unzip
|
|
||||||
texinfo
|
|
||||||
pkg-config
|
|
||||||
# To create port launcher icons
|
# To create port launcher icons
|
||||||
imagemagick
|
imagemagick
|
||||||
|
libmpc
|
||||||
|
mpfr
|
||||||
|
ninja
|
||||||
|
patch
|
||||||
|
pkg-config
|
||||||
|
rsync
|
||||||
|
texinfo
|
||||||
|
unzip
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
openssl
|
|
||||||
libxcrypt
|
|
||||||
xlibsWrapper
|
|
||||||
qemu
|
|
||||||
e2fsprogs
|
e2fsprogs
|
||||||
fuse2fs
|
fuse2fs
|
||||||
# To build the GRUB disk image
|
# To build the GRUB disk image
|
||||||
grub2
|
grub2
|
||||||
|
libxcrypt
|
||||||
|
openssl
|
||||||
parted
|
parted
|
||||||
|
qemu
|
||||||
|
xlibsWrapper
|
||||||
];
|
];
|
||||||
|
|
||||||
hardeningDisable = [ "format" "fortify" ];
|
hardeningDisable = [ "format" "fortify" ];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue