Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pkgs/top-level/haskell-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,9 @@ in {
packages.ghc963
else if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
packages.ghc963
# ghc963Binary.shake broken on MacOS
else if stdenv.hostPlatform.isDarwin then
packages.ghc964
else
packages.ghc963Binary;
inherit (buildPackages.python3Packages) sphinx;
Expand All @@ -316,6 +319,9 @@ in {
packages.ghc963
else if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
packages.ghc963
# ghc963Binary.shake broken on MacOS
else if stdenv.hostPlatform.isDarwin then
packages.ghc964
else
packages.ghc963Binary;
inherit (buildPackages.python3Packages) sphinx;
Expand Down