mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
Merge pull request #267307 from reckenrode/corevideo-fix
darwin.apple_sdk_11_0.frameworks.CoreVideo: switch to sed
This commit is contained in:
commit
a187c6998e
@ -229,8 +229,8 @@ in rec {
|
||||
installPhase = drv.installPhase + ''
|
||||
# When used as a module, complains about a missing import for
|
||||
# Darwin.C.stdint. Apparently fixed in later SDKs.
|
||||
awk -i inplace '/CFBase.h/ { print "#include <stdint.h>" } { print }' \
|
||||
$out/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h
|
||||
sed -e "/CFBase.h/ i #include <stdint.h>" \
|
||||
-i $out/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h
|
||||
'';
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user