diff --git a/shell.nix b/shell.nix index 0f1265c36..37c36e9a2 100644 --- a/shell.nix +++ b/shell.nix @@ -7,6 +7,7 @@ let inherit (darwin.apple_sdk.frameworks) Cocoa CoreGraphics Foundation IOKit Kernel OpenGL; harfbuzzWithCoreText = harfbuzz.override { withCoreText = stdenv.isDarwin; }; in +with python3Packages; mkShell rec { buildInputs = [ harfbuzzWithCoreText @@ -29,17 +30,18 @@ mkShell rec { ] ++ checkInputs; nativeBuildInputs = [ - pkgconfig python3Packages.sphinx ncurses + ncurses + pkg-config + sphinx ] ++ optionals stdenv.isDarwin [ imagemagick libicns # For the png2icns tool. - installShellFiles ]; propagatedBuildInputs = optional stdenv.isLinux libGL; checkInputs = [ - python3Packages.pillow + pillow ]; # Causes build failure due to warning when using Clang