{ stdenv, fetchurl, unzip, ... }: stdenv.mkDerivation rec { pname = "KeepingYouAwake"; version = "1.6.2"; buildInputs = [ unzip ]; sourceRoot = "."; phases = [ "unpackPhase" "installPhase" ]; installPhase = '' mkdir -p "$out/Applications" cp -r KeepingYouAwake.app "$out/Applications/KeepingYouAwake.app" ''; src = fetchurl { name = "KeepingYouAwake-${version}.zip"; url = "https://github.com/newmarcel/KeepingYouAwake/releases/download/${version}/KeepingYouAwake-${version}.zip"; sha256 = "08zk4v5905vmf583q4ab5wc5m2vwpxsjp740xk9083na2047ifc9"; }; # meta = with stdenv.lib; { # description = "Prevents your Mac from going to sleep."; # homepage = "https://github.com/newmarcel/KeepingYouAwake"; # platforms = platforms.darwin; # }; }