10 lines
162 B
Nix
10 lines
162 B
Nix
{ appleDerivation }:
|
|
|
|
appleDerivation {
|
|
installPhase = ''
|
|
mkdir -p $out/include
|
|
cp notify.h $out/include
|
|
cp notify_keys.h $out/include
|
|
'';
|
|
}
|