Skip to content

Commit abefab4

Browse files
committed
Fix approachPkgs being the wrong value.
It picked the one from the line below it due to `let rec` instead of the one from the top-level arguments.
1 parent 6ff5d79 commit abefab4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

survey/default.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ let
7878

7979
lib = pkgs.lib;
8080

81+
approachPkgs = pkgs;
82+
8183
# Function that tells us if a given entry in a `haskellPackages` package set
8284
# is a proper Haskell package (as opposed to some fancy function like
8385
# `.override` and the likes).
@@ -1676,7 +1678,7 @@ in
16761678
];
16771679

16781680
inherit normalPkgs;
1679-
approachPkgs = pkgs;
1681+
inherit approachPkgs;
16801682
# Export as `pkgs` our final overridden nixpkgs.
16811683
pkgs = pkgsWithStaticHaskellBinaries;
16821684

0 commit comments

Comments
 (0)