Forgive me if this is the wrong place to ask this question--it was unclear to me if this belonged here, on issues for Stack, or elsewhere.
I'm running windows 7, 32-bit, with
Stack Version 0.1.10.1, Git revision 83ec40fc5fd6d300c73d23deb1f41d30168fc236 (2783 commits) i386
After running
stack new downloadtest simple
and adding
SHA
to the build-depends, then running stack build, I receive the following error:
Setting codepage to UTF-8 (65001) to ensure correct output from GHC
Download expectation failure: content hash (SHA512)
Expected: aa1178f08ad3364c504ee790dac9b0774b7461fa7ea0a8f2c3ad82943d109602debcf4a8a83090815fef487ceac40019f8b5594ab0043f36e019d69bc5f76853 (ByteString)
Actual: 91f514e1731ef3c2063ff5ab6156242755b2b2b462d4a1f40f150d96cf714f7b7b5b19c7705e5129bbb9876216ca86ff52e49cd7604d83e4b4150172c9bda228
Is this an issue with the packages on Stackage, my configuration, or a bug in Stack? I'm including my cabal file below: name: downloadtest
version: 0.1.0.0
synopsis: Simple project template from stack
description: Please see README.md
license: BSD3
license-file: LICENSE
author: Author name here
copyright: 2010 Author Here
category: Web
build-type: Simple
cabal-version: >=1.10
executable downloadtest
hs-source-dirs: src
main-is: Main.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, SHA