mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-25 04:02:28 +03: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: https://github.com/SerenityOS/serenity/commit/43182285fd Pull-request: https://github.com/SerenityOS/serenity/pull/19224 Reviewed-by: https://github.com/linusg
@ -4,34 +4,35 @@ with pkgs;
|
||||
stdenv.mkDerivation {
|
||||
name = "cpp-env";
|
||||
nativeBuildInputs = [
|
||||
gcc12
|
||||
curl
|
||||
ccache
|
||||
cmake
|
||||
mpfr
|
||||
ninja
|
||||
gmp
|
||||
libmpc
|
||||
curl
|
||||
e2fsprogs
|
||||
fuse2fs
|
||||
patch
|
||||
ccache
|
||||
rsync
|
||||
unzip
|
||||
texinfo
|
||||
pkg-config
|
||||
gcc12
|
||||
gmp
|
||||
# To create port launcher icons
|
||||
imagemagick
|
||||
libmpc
|
||||
mpfr
|
||||
ninja
|
||||
patch
|
||||
pkg-config
|
||||
rsync
|
||||
texinfo
|
||||
unzip
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
openssl
|
||||
libxcrypt
|
||||
xlibsWrapper
|
||||
qemu
|
||||
e2fsprogs
|
||||
fuse2fs
|
||||
# To build the GRUB disk image
|
||||
grub2
|
||||
libxcrypt
|
||||
openssl
|
||||
parted
|
||||
qemu
|
||||
xlibsWrapper
|
||||
];
|
||||
|
||||
hardeningDisable = [ "format" "fortify" ];
|
||||
|
Loading…
Reference in New Issue
Block a user