adv_cmds: fix build on aarch64-darwin

This commit is contained in:
Randy Eckenrode 2023-04-10 23:20:13 -04:00
parent 45dc78cb0a
commit 85f94a09a8
No known key found for this signature in database
GPG key ID: 64C1CD4EC2A600D9

View file

@ -1,4 +1,4 @@
{ lib, appleDerivation, xcbuild, ncurses, libutil }:
{ lib, appleDerivation, xcbuild, ncurses, libutil, Libc }:
appleDerivation {
# We can't just run the root build, because https://github.com/facebook/xcbuild/issues/264
@ -42,7 +42,7 @@ appleDerivation {
'';
nativeBuildInputs = [ xcbuild ];
buildInputs = [ ncurses libutil ];
buildInputs = [ ncurses libutil Libc ];
meta = {
platforms = lib.platforms.darwin;