ec92d4d331
GitOrigin-RevId: 540dccb2aeaffa9dc69bfdc41c55abd7ccc6baa3
10 lines
265 B
Nix
10 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
|
|
'';
|
|
}
|