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 ];
|
2018-05-31 09:13:03 -07:00
|
|
|
xcbuildFlags = "-target caffeinate";
|
|
|
|
installPhase = ''
|
|
|
|
install -D Products/Deployment/caffeinate $out/bin/caffeinate
|
|
|
|
'';
|
|
|
|
}
|