Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 9f44b41

Browse files
committed
Fix katip on Windows
1 parent 1db291d commit 9f44b41

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

nix/pkgs.nix

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,14 @@ let
3030
# cross compilation plumbing to make Template Haskell
3131
# work when cross compiling.
3232
iohk-module
33-
{ packages.contra-tracer.configureFlags = [ "--ghc-options=\"-v\"" ];
34-
packages.contra-tracer.setupBuildFlags = [ "-v" ];
33+
{
34+
# katip has an version bound of Win32 < 2.6; this however
35+
# implies that it's incompatible with ghc-8.6 (on windows).
36+
# Let's force it to accept out packageset.
37+
packages.katip.doExactConfig = true;
3538
}
3639
];
3740
};
3841

3942
in
40-
pkgSet.config.hsPkgs // { _config = pkgSet.config; }
43+
pkgSet.config.hsPkgs // { _config = pkgSet.config; }

0 commit comments

Comments
 (0)