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

appleDerivation {
  nativeBuildInputs = [ xcbuildHook ];
  buildInputs = [ IOKit ];
  xcbuildFlags = [ "-target" "caffeinate" ];
  installPhase = ''
    install -D Products/Deployment/caffeinate $out/bin/caffeinate
  '';
}