mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:07:36 +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
|
patch
|
||||||
ccache
|
ccache
|
||||||
rsync
|
rsync
|
||||||
|
unzip
|
||||||
|
|
||||||
# Example Build-time Additional Dependencies
|
# Example Build-time Additional Dependencies
|
||||||
pkgconfig
|
pkgconfig
|
||||||
|
@ -55,6 +56,7 @@ stdenv.mkDerivation {
|
||||||
# Example Run-time Additional Dependencies
|
# Example Run-time Additional Dependencies
|
||||||
openssl
|
openssl
|
||||||
x11
|
x11
|
||||||
|
qemu
|
||||||
# glibc
|
# glibc
|
||||||
];
|
];
|
||||||
hardeningDisable = [ "format" "fortify" ];
|
hardeningDisable = [ "format" "fortify" ];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue