Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Haskell GUI library on OSX

I want to create a GUI application on OSX with Haskell. It mainly should be about drawing on a canvas. I tried the following options but none of them worked:

  • WX. It doesn't work well because of dependency on obsolete quicktime version. I can't compile with it and can't use it in ghci.
  • Gtk2hs. It involves very complicated install process which fails for me with homebrew (I tried the sequence on haskell.org wiki but it didn't work for me probably because of OSX10.8).

Are there any other options?

like image 200
Konstantin Solomatov Avatar asked Sep 12 '12 15:09

Konstantin Solomatov


1 Answers

If you're just drawing 2D shapes on a canvas, you could try gloss.

like image 175
Ptharien's Flame Avatar answered Sep 30 '22 19:09

Ptharien's Flame