ec92d4d331
GitOrigin-RevId: 540dccb2aeaffa9dc69bfdc41c55abd7ccc6baa3
9 lines
187 B
Nix
9 lines
187 B
Nix
{ appleDerivation', stdenvNoCC }:
|
|
|
|
appleDerivation' stdenvNoCC {
|
|
installPhase = ''
|
|
mkdir -p $out/include
|
|
cp notify.h $out/include
|
|
cp notify_keys.h $out/include
|
|
'';
|
|
}
|