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