darwin.adv_cmds: fix build after 26.4 source release update

This commit is contained in:
Randy Eckenrode 2026-05-07 18:16:31 -04:00
commit 5663b16973
No known key found for this signature in database
GPG key ID: 64C1CD4EC2A600D9

View file

@ -14,7 +14,7 @@
let
Libc = sourceRelease "Libc";
libplatform = sourceRelease "libplatform";
xnu = sourceRelease "xnu";
xnu = sourceRelease "xnu"; # Cant use xnuHeaders because adv_cmds is a transitive dependency of xnuHeaders.
privateHeaders = stdenvNoCC.mkDerivation {
name = "adv_cmds-deps-private-headers";
@ -27,6 +27,9 @@ let
install -D -m644 -t "$out/include/System/sys" \
'${xnu}/bsd/sys/persona.h' \
'${xnu}/bsd/sys/proc.h'
install -D -m644 -t "$out/include/sys" \
'${xnu}/bsd/sys/proc_private.h'
'';
};
in