This helps with creating better error messages, because we can now see where in the pipeline the error occurred
11 lines
283 B
Nix
11 lines
283 B
Nix
{ pkgs, compiler, ... }:
|
|
final: prev: {
|
|
haskellPackages = with prev.haskell.lib;
|
|
prev.haskell.packages.${compiler}.override {
|
|
overrides = hpFinal: hpPrev: {
|
|
# Upgrade nixfmts "text" dependency to >= 2
|
|
nixfmt = doJailbreak hpPrev.nixfmt;
|
|
};
|
|
};
|
|
}
|