mirror of
https://github.com/h7x4/nix-attr-search.git
synced 2024-12-22 20:17:30 +01:00
h7x4
fa2f0fd6b4
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;
|
|
};
|
|
};
|
|
}
|