diff options
| -rw-r--r-- | pkgs/default.nix | 9 | ||||
| -rw-r--r-- | pkgs/modrinth-app/default.nix | 8 |
2 files changed, 15 insertions, 2 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index aaaefa7..d6c02bb 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -29,7 +29,14 @@ in modrinth-app-unwrapped = callPackage ./modrinth-app { inherit (final.nodePackages or prev.nodePackages) pnpm; - inherit ((final.darwin or prev.darwin).apple_sdk.frameworks) CoreServices Security WebKit; + + inherit + ((final.darwin or prev.darwin).apple_sdk.frameworks) + AppKit + CoreServices + Security + WebKit + ; }; modrinth-app = callPackage ./modrinth-app/wrapper.nix { 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 |
