From 9d1de50bf9a230d4791e49385db1a6df5153a41e Mon Sep 17 00:00:00 2001 From: "Jake(Jaehak Song)" Date: Fri, 13 Jan 2023 21:57:33 +0900 Subject: [PATCH] shell.nix: add a missing dependency 'UniformTypeIdentifiers' for macOS --- shell.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 4e5744fdd..c3d2cbf68 100644 --- a/shell.nix +++ b/shell.nix @@ -4,7 +4,7 @@ with pkgs; let inherit (lib) optional optionals; inherit (xorg) libX11 libXrandr libXinerama libXcursor libXi libXext; - inherit (darwin.apple_sdk.frameworks) Cocoa CoreGraphics Foundation IOKit Kernel OpenGL; + inherit (darwin.apple_sdk.frameworks) Cocoa CoreGraphics Foundation IOKit Kernel OpenGL UniformTypeIdentifiers; harfbuzzWithCoreText = harfbuzz.override { withCoreText = stdenv.isDarwin; }; in with python3Packages; @@ -21,6 +21,7 @@ mkShell rec { IOKit Kernel OpenGL + UniformTypeIdentifiers libpng python3 zlib