Commit 26be5ba9 authored by Ricky Lopez's avatar Ricky Lopez
Browse files

caffeine: 1.1.3 -> 1.1.4

Adds support for aarch64-darwin
parent de3255d9
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -7,11 +7,11 @@

stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "caffeine";
  version = "1.1.3";
  version = "1.1.4";

  src = fetchurl {
    url = "https://github.com/IntelliScape/caffeine/releases/download/${finalAttrs.version}/Caffeine.dmg";
    hash = "sha256-JA5auDKiXtCvQ67/0dZtxmPf6nwlJdkYwhTWEHmBoDs=";
    hash = "sha256-GtNMMpmgyGaHPE/rQyw+ERhjda229DxfSBrp1G0G1yM=";
  };

  sourceRoot = ".";
@@ -32,7 +32,10 @@ stdenvNoCC.mkDerivation (finalAttrs: {
    homepage = "https://intelliscapesolutions.com/apps/caffeine";
    license = licenses.mit;
    maintainers = with maintainers; [ emilytrau ];
    platforms = [ "x86_64-darwin" ];
    platforms = [
      "x86_64-darwin"
      "aarch64-darwin"
    ];
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
  };
})