about summary refs log tree commit diff
path: root/pkgs/test
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2024-01-02 10:55:23 +0300
committerK900 <me@0upti.me>2024-01-02 10:55:23 +0300
commit887e96e875e933c0a5d203ffc40e202f3d16317e (patch)
tree07c2de06c350dc5e330f71aa79796368ae5e2179 /pkgs/test
parent494bdb470881cb8714b47a0bbb0048157e8fdeda (diff)
parent6786065ebd23800c6673fe80a5c97d3ec9e439d6 (diff)
Merge remote-tracking branch 'origin/master' into staging-next
Diffstat (limited to 'pkgs/test')
-rw-r--r--pkgs/test/haskell/incremental/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/test/haskell/incremental/default.nix b/pkgs/test/haskell/incremental/default.nix
index 4509939ba4f42..c7bd43b11af6e 100644
--- a/pkgs/test/haskell/incremental/default.nix
+++ b/pkgs/test/haskell/incremental/default.nix
@@ -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.packages.ghc944.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.