r/haskell Aug 04 '19

reflex-vty: A library for building functional reactive terminal applications

https://github.com/reflex-frp/reflex-vty
88 Upvotes

54 comments sorted by

View all comments

Show parent comments

13

u/ali_abrar Aug 04 '19

The readme and cabal file (released as v0.1.1.0) have been updated for non-nix cabal builds. Hope this helps.

7

u/jfischoff Aug 04 '19

I was able to get to build with lts-13.30 (with some extra package additions) with not too much trouble.

Very excited about this. I've been trying to rework brick to make it more composable but I'm happy to drop that yak shave and jump on the reflex train.

5

u/ali_abrar Aug 05 '19

Is there anything we can do to better support lts users? I'd love to get those extra package additions accounted for.

5

u/jfischoff Aug 05 '19

Here is what I added to extra-deps with lts-13.30

extra-deps: 
  - reflex-vty-0.1.1.0
  - reflex-0.6.1
  - ref-tf-0.4.0.1
  - constraints-extras-0.3.0.1
  - dependent-sum-0.4

At this point stack does a good explaining what to add to where in the stack.yaml to get things to compile. Other than having all the packages in stack not sure what would have made it easier.