mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
treewide: structured attrs fixes
This commit is contained in:
parent
9126911ba5
commit
bb2a6f7396
1 changed files with 2 additions and 2 deletions
|
@ -81,8 +81,8 @@ appleDerivation ({
|
|||
export DSTROOT=$out
|
||||
'';
|
||||
|
||||
buildFlags = lib.optionalString headersOnly "exporthdrs";
|
||||
installTargets = lib.optionalString headersOnly "installhdrs";
|
||||
buildFlags = lib.optional headersOnly "exporthdrs";
|
||||
installTargets = lib.optional headersOnly "installhdrs";
|
||||
|
||||
postInstall = lib.optionalString headersOnly ''
|
||||
mv $out/usr/include $out
|
||||
|
|
Loading…
Reference in a new issue