halogenandtoast 2017-02-05 14:46:42
Is there any way to see how/why Aeson failed to parse some JSON
qmm 2017-02-05 15:00:07
how would i run a warp server on top of cloud haskell?
lpaste 2017-02-05 15:02:22
qmm pasted "attempt at running warp on cloud haskell" at http://lpaste.net/352119
qmm 2017-02-05 15:04:11
forkProcess :: LocalNode -> Process () -> IO ProcessId
qmm 2017-02-05 15:04:50
run :: Port -> Application -> IO ()
qmm 2017-02-05 15:05:32
i guess my question is how to turn IO () into a Process ()
qmm 2017-02-05 15:05:45
https://hackage.haskell.org/package/distributed-process-0.6.6/docs/Control-Distributed-Process-Internal-Types.html#t:Process
qmm 2017-02-05 15:06:14
it derives MonadIO
qmm 2017-02-05 15:09:06
the end goal is to supervise the wai application
qmm 2017-02-05 15:10:32
maybe i should have asked "how do i run a wai application on cloud haskell" :)
qmm 2017-02-05 15:11:38
but my real question is: how to turn IO () into a Process ()
qmm 2017-02-05 15:11:53
(i think)
redmq 2017-02-05 15:33:41
what version of alex gets used if a project depends on a project which contains a *.x file?
redmq 2017-02-05 15:34:16
i'm trying to compile a project which has as a dependency language-c-comments-0.3, but it's failing in the generated lexer code from a *.x file
redmq 2017-02-05 15:34:46
however if i do `stack unpack language-c-comments-0.3` and in that directory do `stack build` there are no issues (both are on stackage lts-7.19)
redmq 2017-02-05 15:35:38
tl;dl it seems language-c-comments-0.3 compiles on its own but not as a dependency even though both times i use lts-7.18
redmq 2017-02-05 15:35:43
7.19**
MarcelineVQ 2017-02-05 15:43:26
what's your stack.yaml look like?