mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
11 lines
248 B
Nix
11 lines
248 B
Nix
{ appleDerivation }:
|
|
|
|
appleDerivation {
|
|
dontBuild = true;
|
|
installPhase = ''
|
|
mkdir -p $out/Library/Frameworks/EAP8021X.framework/Headers
|
|
|
|
cp EAP8021X.fproj/EAPClientProperties.h $out/Library/Frameworks/EAP8021X.framework/Headers
|
|
'';
|
|
}
|