From 82cb885966c7399725610c821f94ccb4caed7f1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ernests=20Kuz=C5=86ecovs?= <34303435+ErnestKz@users.noreply.github.com> Date: Mon, 6 Sep 2021 21:29:08 +0100 Subject: [PATCH] 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. --- Documentation/BuildInstructionsOther.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/BuildInstructionsOther.md b/Documentation/BuildInstructionsOther.md index 49688314759ea7..3bc1120cede44b 100644 --- a/Documentation/BuildInstructionsOther.md +++ b/Documentation/BuildInstructionsOther.md @@ -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" ];