summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/Libnotify/default.nix
blob: 2ee80d70264635781360ab2690c88c091cb96d80 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ appleDerivation }:

appleDerivation {
  installPhase = ''
    mkdir -p $out/include
    cp notify.h      $out/include
    cp notify_keys.h $out/include
  '';
}