-
Notifications
You must be signed in to change notification settings - Fork 721
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add win32-2.6.2.0 to stack.yaml #706
Conversation
Evidence of build:
|
What version was it picking before? I don't understand how it was possible to pick an older one, since |
The stack From the stack docs:
Except that the equivalent cabal option actually does do what it says. Furthermore, the cabal version allows for fine grained control. Note how the
So it only ignores upper bounds, and only on With the stack "allow-newer" feature it removes all the safety checks. All packages, all dependencies, both upper and lower bounds. This is dangerous. In this PR we're working around the problem that it is ignoring an important lower bound. We should remove the use of For the specific case of |
After reinstalling the Haskell Platform to try and get around a cabal error my previously working
I'll take another look at this later on, but will close the PR for now in case of unintended consequences of the stack file changing for Linux systems. |
This PR allows the node to build on Windows 10 using
stack build
by addingwin32-2.6.2.0
tostack.yaml
.