--- /dev/null
+[[!comment format=mdwn
+ username="jkniiv"
+ avatar="http://cdn.libravatar.org/avatar/05fd8b33af7183342153e8013aa3713d"
+ subject="comment 3"
+ date="2022-07-21T20:08:54Z"
+ content="""
+I see that things are slowly moving ahead in that github issue. On a somewhat related note
+I was able to compile with stack on Windows with lts-19.13 by adding the following extra-deps
+to stack.yaml (starting from Win32 onward in the following patch):
+
+[[!format diff \"\"\"
+diff --git a/stack.yaml b/stack.yaml
+index 9b067c82f..27b0fe53c 100644
+--- a/stack.yaml
++++ b/stack.yaml
+@@ -12,19 +12,21 @@ flags:
+ gitlfs: true
+ packages:
+ - '.'
+-resolver: lts-18.13
++resolver: lts-19.13
+ extra-deps:
+ - IfElse-0.85
+ - aws-0.22
+ - bloomfilter-2.0.1.0
+ - git-lfs-1.2.0
+-- http-client-restricted-0.0.4
++- http-client-restricted-0.0.5
+ - network-multicast-0.3.2
+ - sandi-0.5
+ - torrent-10000.1.1
+-- base16-bytestring-0.1.1.7
+-- base64-bytestring-1.0.0.3
+-- bencode-0.6.1.1
+-- http-client-0.7.9
++- aeson-1.5.6.0
++- Win32-2.9.0.0
++- Cabal-3.6.3.0
++- directory-1.3.7.0
++- process-1.6.14.0
++- time-1.11.1.2
+ explicit-setup-deps:
+ git-annex: true
+\"\"\"]]
+
+Yes, that was the newest Win32 I was able to make things work with as stack wasn't able
+to resolve the cross-dependencies involving `Win32`, `directory`, `process` and `time` packages otherwise.
+And if I remember correctly there was something called `haskeline` that also had specific
+requirements.
+"""]]