9811bf2258
The last commit broken Darwin stdenv. We still need to skip some phases when Apple provides a Makefile that shouldn’t be used.
10 lines
256 B
Nix
10 lines
256 B
Nix
{ stdenv, appleDerivation }:
|
|
|
|
appleDerivation {
|
|
dontBuild = true;
|
|
installPhase = ''
|
|
mkdir -p $out/Library/Frameworks/EAP8021X.framework/Headers
|
|
|
|
cp EAP8021X.fproj/EAPClientProperties.h $out/Library/Frameworks/EAP8021X.framework/Headers
|
|
'';
|
|
}
|