mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:07:35 +00:00
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:
parent
a8d96df8e0
commit
82cb885966
1 changed files with 2 additions and 0 deletions
|
@ -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" ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue