summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/apple-source-releases/PowerManagement/default.nix
blob: 2d5520b9bf9c232d25489f5268559d1859d53c96 (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
  '';
}