Documentation: Add missing dependencies for Nix

I was building serenity on quite a fresh NixOS system and it turns
out `unzip` and `qemu` were missing from this nix expression to
compile and run serenity.
This commit is contained in:
Ernests Kuzņecovs 2021-09-06 21:29:08 +01:00 committed by Linus Groh
parent a8d96df8e0
commit 82cb885966

View file

@ -47,6 +47,7 @@ stdenv.mkDerivation {
patch
ccache
rsync
unzip
# Example Build-time Additional Dependencies
pkgconfig
@ -55,6 +56,7 @@ stdenv.mkDerivation {
# Example Run-time Additional Dependencies
openssl
x11
qemu
# glibc
];
hardeningDisable = [ "format" "fortify" ];