core/pkgs/by-name/da/darwin/packages/apple-source-releases/PowerManagement/default.nix
2024-05-13 11:34:52 -04:00

11 lines
265 B
Nix

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