Unverified Commit 6d0c50d8 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #189189 from wegank/espanso-darwin

espanso: fix build on darwin
parents f2ba5520 ae6ec03e
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -11,6 +11,10 @@
, xclip
, xdotool
, makeWrapper
, stdenv
, AppKit
, Cocoa
, Foundation
}:

rustPlatform.buildRustPackage rec {
@@ -39,7 +43,12 @@ rustPlatform.buildRustPackage rec {
    libnotify
    xclip
    openssl
  ] ++ lib.optionals stdenv.isLinux [
    xdotool
  ] ++ lib.optionals stdenv.isDarwin [
    AppKit
    Cocoa
    Foundation
  ];

  # Some tests require networking
@@ -55,7 +64,7 @@ rustPlatform.buildRustPackage rec {
    homepage = "https://espanso.org";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ kimat ];
    platforms = platforms.linux;
    platforms = platforms.unix;

    longDescription = ''
      Espanso detects when you type a keyword and replaces it while you're typing.
+3 −1
Original line number Diff line number Diff line
@@ -3754,7 +3754,9 @@ with pkgs;
  eschalot = callPackage ../tools/security/eschalot { };
  espanso = callPackage ../applications/office/espanso { };
  espanso = callPackage ../applications/office/espanso {
    inherit (darwin.apple_sdk.frameworks) AppKit Cocoa Foundation;
  };
  esphome = callPackage ../tools/misc/esphome { };