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

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