File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 119
119
# inherit compiler-nix-name;
120
120
# });
121
121
# we also want cross compilation to windows.
122
- crossPlatforms = p : lib . optional ( system == "x86_64-linux" ) p . mingwW64 ;
122
+ crossPlatforms = p : lib . optional ( system == "x86_64-linux" ) p . ucrt64 ;
123
123
} ;
124
124
125
125
# package customizations as needed. Where cabal.project is not
158
158
packages . terminal-size . components . library . build-tools = lib . mkForce [ ] ;
159
159
packages . network . components . library . build-tools = lib . mkForce [ ] ;
160
160
} )
161
+ ( { pkgs , ...} : lib . mkIf pkgs . stdenv . hostPlatform . isWindows {
162
+ packages . basement . configureFlags = [ "--hsc2hs-options=--cflag=-Wno-int-conversion" ] ;
163
+ } )
161
164
] ;
162
165
} ) ;
163
166
# ... and construct a flake from the cabal project
You can’t perform that action at this time.
0 commit comments