Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 819a2c571a5c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: efe54d6c04f2
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 24, 2020

  1. ghc8102: bootstrap with ghc8102BinaryMinimal on aarch32

    ghc refuses to evaluate on armhf even tho ghc does provide binaries for the arch
    Fuseteam committed Nov 24, 2020
    Copy the full SHA
    3ebd278 View commit details

Commits on Nov 28, 2020

  1. Merge pull request #104683 from Fuseteam/patch-1

    ghc8102: bootstrap with ghc8102BinaryMinimal on aarch32
    maralorn authored Nov 28, 2020
    Copy the full SHA
    efe54d6 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/top-level/haskell-packages.nix
2 changes: 1 addition & 1 deletion pkgs/top-level/haskell-packages.nix
Original file line number Diff line number Diff line change
@@ -96,7 +96,7 @@ in {
};
ghc8102 = callPackage ../development/compilers/ghc/8.10.2.nix {
# aarch64 ghc865Binary gets SEGVs due to haskell#15449 or similar
bootPkgs = if stdenv.isAarch64 then
bootPkgs = if stdenv.isAarch64 || stdenv.isAarch32 then
packages.ghc8102BinaryMinimal
else
packages.ghc865Binary;