haskellPackages: Fix eval errors
This commit is contained in:
parent
7b4156edda
commit
5518af0a55
1 changed files with 2 additions and 2 deletions
|
@ -3,13 +3,13 @@
|
|||
# See: https://www.haskellforall.com/2022/12/nixpkgs-support-for-incremental-haskell.html
|
||||
# See: https://felixspringer.xyz/homepage/blog/incrementalHaskellBuildsWithNix
|
||||
|
||||
{ haskell, lib }:
|
||||
{ haskell, haskellPackages, lib }:
|
||||
|
||||
let
|
||||
inherit (haskell.lib.compose) overrideCabal;
|
||||
|
||||
# Incremental builds work with GHC >=9.4.
|
||||
temporary = haskell.haskellPackages.temporary;
|
||||
temporary = haskellPackages.temporary;
|
||||
|
||||
# This will do a full build of `temporary`, while writing the intermediate build products
|
||||
# (compiled modules, etc.) to the `intermediates` output.
|
||||
|
|
Loading…
Reference in a new issue