caffeine: init at 1.1.3
This commit is contained in:
parent
b840c45d39
commit
618c1a7ab5
2 changed files with 39 additions and 0 deletions
37
pkgs/tools/misc/caffeine/default.nix
Normal file
37
pkgs/tools/misc/caffeine/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, stdenvNoCC
|
||||
, fetchurl
|
||||
, undmg
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "caffeine";
|
||||
version = "1.1.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/IntelliScape/caffeine/releases/download/${finalAttrs.version}/Caffeine.dmg";
|
||||
hash = "sha256-JA5auDKiXtCvQ67/0dZtxmPf6nwlJdkYwhTWEHmBoDs=";
|
||||
};
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
nativeBuildInputs = [ undmg ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/Applications
|
||||
cp -r *.app $out/Applications
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Don't let your Mac fall asleep";
|
||||
homepage = "https://intelliscapesolutions.com/apps/caffeine";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ emilytrau Enzime ];
|
||||
platforms = [ "x86_64-darwin" ];
|
||||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
||||
};
|
||||
})
|
|
@ -4290,6 +4290,8 @@ with pkgs;
|
|||
|
||||
traefik-certs-dumper = callPackage ../tools/misc/traefik-certs-dumper { };
|
||||
|
||||
caffeine = callPackage ../tools/misc/caffeine { };
|
||||
|
||||
calamares = libsForQt5.callPackage ../tools/misc/calamares {
|
||||
python = python3;
|
||||
boost = boost.override { enablePython = true; python = python3; };
|
||||
|
|
Loading…
Reference in a new issue