diff options
| author | seth <[email protected]> | 2023-12-14 06:18:31 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-14 18:03:17 -0500 |
| commit | 5e3a9ac4eb4636aa0209ccf4e3ff958baf31969d (patch) | |
| tree | cf6e928346becd9e7c97f9b04e0aade407def251 /pkgs/modrinth-app/default.nix | |
| parent | 63498970aa68db136ac73150edcb1e547ed4a3e2 (diff) | |
modrinth-app: add AppKit to buildInputs on darwin
Diffstat (limited to 'pkgs/modrinth-app/default.nix')
| -rw-r--r-- | pkgs/modrinth-app/default.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/modrinth-app/default.nix b/pkgs/modrinth-app/default.nix index df5705a..5e658b5 100644 --- a/pkgs/modrinth-app/default.nix +++ b/pkgs/modrinth-app/default.nix @@ -7,6 +7,7 @@ buildGoModule, makeDesktopItem, copyDesktopItems, + AppKit, CoreServices, Security, WebKit, @@ -85,7 +86,12 @@ rustPlatform.buildRustPackage rec { libsoup webkitgtk ] - ++ lib.optionals stdenv.isDarwin [CoreServices Security WebKit]; + ++ lib.optionals stdenv.isDarwin [ + AppKit + CoreServices + Security + WebKit + ]; nativeBuildInputs = [ pkg-config |
