summaryrefslogtreecommitdiff
path: root/Toolchain
diff options
context:
space:
mode:
authornetworkException <git@nwex.de>2023-06-02 17:24:26 +0200
committerAndreas Kling <kling@serenityos.org>2023-06-02 20:05:51 +0200
commit43182285fdaec76d75c35e7c101b08d3c1adad6a (patch)
tree255ea0a46afd0e7b265129025eb8de817dfb9889 /Toolchain
parent76611790e9c80bf9b2879b0324fc2e96fcf403fb (diff)
downloadserenity-43182285fdaec76d75c35e7c101b08d3c1adad6a.zip
Toolchain: Sort packages in {nativeB,b}uildInputs nix lists
Diffstat (limited to 'Toolchain')
-rw-r--r--Toolchain/serenity.nix31
1 files changed, 16 insertions, 15 deletions
diff --git a/Toolchain/serenity.nix b/Toolchain/serenity.nix
index 311825b5b1..19546f3396 100644
--- a/Toolchain/serenity.nix
+++ b/Toolchain/serenity.nix
@@ -4,34 +4,35 @@ with pkgs;
stdenv.mkDerivation {
name = "cpp-env";
nativeBuildInputs = [
- gcc12
- curl
+ ccache
cmake
- mpfr
- ninja
- gmp
- libmpc
+ curl
e2fsprogs
fuse2fs
+ gcc12
+ gmp
+ # To create port launcher icons
+ imagemagick
+ libmpc
+ mpfr
+ ninja
patch
- ccache
+ pkg-config
rsync
- unzip
texinfo
- pkg-config
- # To create port launcher icons
- imagemagick
+ unzip
];
+
buildInputs = [
- openssl
- libxcrypt
- xlibsWrapper
- qemu
e2fsprogs
fuse2fs
# To build the GRUB disk image
grub2
+ libxcrypt
+ openssl
parted
+ qemu
+ xlibsWrapper
];
hardeningDisable = [ "format" "fortify" ];