forked from mirrors/nixpkgs
7bba32a069
If things build fine with `stdenvNoCC`, let them use that. If tools might be prefixed, prepare for that, either by directly splicing or just using the env vars provided by the wrapper setup-hooks. Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
11 lines
265 B
Nix
11 lines
265 B
Nix
{ appleDerivation', stdenv }:
|
|
|
|
appleDerivation' stdenv {
|
|
dontBuild = true;
|
|
installPhase = ''
|
|
mkdir -p $out/Library/Frameworks/EAP8021X.framework/Headers
|
|
|
|
cp EAP8021X.fproj/EAPClientProperties.h $out/Library/Frameworks/EAP8021X.framework/Headers
|
|
'';
|
|
}
|