shell.nix: add a missing dependency 'UniformTypeIdentifiers' for macOS
This commit is contained in:
parent
d55a9b582b
commit
9d1de50bf9
@ -4,7 +4,7 @@ with pkgs;
|
|||||||
let
|
let
|
||||||
inherit (lib) optional optionals;
|
inherit (lib) optional optionals;
|
||||||
inherit (xorg) libX11 libXrandr libXinerama libXcursor libXi libXext;
|
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; };
|
harfbuzzWithCoreText = harfbuzz.override { withCoreText = stdenv.isDarwin; };
|
||||||
in
|
in
|
||||||
with python3Packages;
|
with python3Packages;
|
||||||
@ -21,6 +21,7 @@ mkShell rec {
|
|||||||
IOKit
|
IOKit
|
||||||
Kernel
|
Kernel
|
||||||
OpenGL
|
OpenGL
|
||||||
|
UniformTypeIdentifiers
|
||||||
libpng
|
libpng
|
||||||
python3
|
python3
|
||||||
zlib
|
zlib
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user