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

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