Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 2 additions & 3 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4778,10 +4778,9 @@ with pkgs;

haskellPackages = recurseIntoAttrs (
# Prefer native-bignum to avoid linking issues with gmp;
# TemplateHaskell doesn't work with hadrian built GHCs yet
# https://github.com/NixOS/nixpkgs/issues/275304
# GHC 9.10 doesn't work too well with iserv-proxy.
if stdenv.hostPlatform.isStatic then
haskell.packages.native-bignum.ghc94
haskell.packages.native-bignum.ghc912
# JS backend can't use gmp
else if stdenv.hostPlatform.isGhcjs then
haskell.packages.native-bignum.ghc910
Expand Down
29 changes: 0 additions & 29 deletions pkgs/top-level/release-haskell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -428,38 +428,9 @@ let
postgrest
;
};

haskell.packages.native-bignum.ghc9103 = {
inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.native-bignum.ghc9103)
hello
random
QuickCheck
terminfo # isn't bundled for cross
;
};
};

pkgsCross = {
aarch64-android-prebuilt.pkgsStatic =
removePlatforms
[
# Android NDK package doesn't support building on
"aarch64-darwin"
"aarch64-linux"

"x86_64-darwin"
]
{
haskell.packages.ghc912 = {
inherit
(packagePlatforms pkgs.pkgsCross.aarch64-android-prebuilt.pkgsStatic.haskell.packages.ghc912)
ghc
hello
microlens
;
};
};

ghcjs =
removePlatforms
[
Expand Down
Loading