2018-07-06 15:53:50 -07:00
|
|
|
{ appleDerivation, xcbuildHook, IOKit }:
|
2018-05-31 09:13:03 -07:00
|
|
|
|
|
|
|
appleDerivation {
|
2018-07-06 15:53:50 -07:00
|
|
|
nativeBuildInputs = [ xcbuildHook ];
|
|
|
|
buildInputs = [ IOKit ];
|
2019-10-27 06:03:25 -07:00
|
|
|
xcbuildFlags = [ "-target" "caffeinate" ];
|
2018-05-31 09:13:03 -07:00
|
|
|
installPhase = ''
|
|
|
|
install -D Products/Deployment/caffeinate $out/bin/caffeinate
|
|
|
|
'';
|
|
|
|
}
|