10 lines
224 B
Nix
10 lines
224 B
Nix
|
{ appleDerivation, xcbuild, IOKit }:
|
||
|
|
||
|
appleDerivation {
|
||
|
buildInputs = [ xcbuild IOKit ];
|
||
|
xcbuildFlags = "-target caffeinate";
|
||
|
installPhase = ''
|
||
|
install -D Products/Deployment/caffeinate $out/bin/caffeinate
|
||
|
'';
|
||
|
}
|