mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 21:54:10 +00:00
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
|
|
'';
|
|
}
|