diff options
author | Ernests Kuzņecovs <34303435+ErnestKz@users.noreply.github.com> | 2021-09-06 21:29:08 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-09-07 20:23:23 +0100 |
commit | 82cb885966c7399725610c821f94ccb4caed7f1a (patch) | |
tree | 9c1025a666ceb5907d9a968d316ca8476b7414a0 /Documentation | |
parent | a8d96df8e0277161e7e3e5db24f265ddbdf995c3 (diff) | |
download | serenity-82cb885966c7399725610c821f94ccb4caed7f1a.zip |
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.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/BuildInstructionsOther.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/BuildInstructionsOther.md b/Documentation/BuildInstructionsOther.md index 4968831475..3bc1120ced 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" ]; |