Skip to content

Commit 2247dbd

Browse files
committed
Fix postgresql-simple on -O0
1 parent 8f5a35f commit 2247dbd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

survey/default.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1041,6 +1041,11 @@ let
10411041
(if disableOptimization then dontCheck else lib.id)
10421042
super.aeson;
10431043

1044+
# Has an inspection test which fails on -O0, which makse sense.
1045+
postgresql-simple =
1046+
(if disableOptimization then dontCheck else lib.id)
1047+
super.postgresql-simple;
1048+
10441049
arbtt =
10451050
addStaticLinkerFlagsWithPkgconfig
10461051
super.arbtt

0 commit comments

Comments
 (0)