Dennis Gosnell
Dennis Gosnell
> It appears that the build error from the page you've linked is saying that the test suite can't be run because the `-N` RTS option doesn't exist. Is this...
I don't think there is a type-level concat function for two type-level lists in world-peace. What are you trying to do with it? What sort of function are you trying...
Ah, I see. You want something like a union or monoid append operator for type-level sets? So `'[TokenErr, FormatErr, DecryptErr] ' '[TokenErr, RequestErr]` would be `'[TokenErr, FormatErr, DecryptErr, RequestErr]`?
It is relatively straight-forward to write a `Union` type-family: https://hackage.haskell.org/package/type-list-0.5.0.0/docs/Data-Type-List.html#t:Union. I'm guessing that at the value level you want to write something like: ```haskell let foo = undefined :: OpenUnion...
Looks like stackage is trying to drop cryptonite, so we should probably make this switch: https://github.com/commercialhaskell/stackage/issues/7474
The problem is that `cabal-doctest` was the only reliable solution for quite a while! Now I think `cabal-docspec` is available, but I haven't actually tried it with any of my...
@tchoutri I was wondering what your personal motivation is for this. Are you trying to cross-compile `password`?
Let me try to give a little of the backstory: I [first wrote `purescript2nix`](https://functor.tokyo/blog/2021-12-10-road-to-purescript2nix) and announced it in December 2021. Either immediately after that, or during that time, @jonascarpay and...
purescript-email-validate is mostly just a purescript rewrite of the Haskell library [email-validate](http://hackage.haskell.org/package/email-validate), warts and all. This particular problem seems to come from email validate: ```console $ stack ghci --package email-validate...
Hi, thanks for letting me know! I probably won't have time to get to this in the next couple weeks, but if you (or anyone else reading this) is interested...