mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
darwin.adv_cmds: fix build after 26.4 source release update
This commit is contained in:
parent
033d41e2e5
commit
5663b16973
1 changed files with 4 additions and 1 deletions
|
|
@ -14,7 +14,7 @@
|
|||
let
|
||||
Libc = sourceRelease "Libc";
|
||||
libplatform = sourceRelease "libplatform";
|
||||
xnu = sourceRelease "xnu";
|
||||
xnu = sourceRelease "xnu"; # Can’t 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue