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

appleDerivation {
  phases = [ "unpackPhase" "installPhase" ];

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