name:                reflex-gi-gtk
version:             0.1.0.0
synopsis:            Helper functions to use Reflex with gi-gtk
-- description:
homepage:            https://gitlab.com/Kritzefitz/reflex-gi-gtk#readme
license:             MPL-2.0
license-file:        LICENSE
author:              Sven Bartscher
maintainer:          sven.bartscher@weltraumschlangen.de
copyright:           2020 Sven Bartscher
category:            FRP
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Reflex.GI.Gtk
                     , Reflex.GI.Gtk.Class
                     , Reflex.GI.Gtk.Host
                     , Reflex.GI.Gtk.Input
                     , Reflex.GI.Gtk.Output
                     , Reflex.GI.Gtk.Run.Class
                     , Reflex.GI.Gtk.Run.Base
                     , Reflex.GI.Gtk.Widget.Box
  other-modules:       Reflex.GI.Gtk.Widget.Ord
  build-depends:       async >= 2.2.2 && < 2.3
                     , base >= 4.7 && < 5
                     , containers >= 0.6.2 && < 0.7
                     , dependent-sum >= 0.7.1 && < 0.8
                     , exception-transformers == 0.4.*
                     , gi-gdk == 3.*
                     , gi-glib == 2.*
                     , gi-gtk == 3.*
                     , haskell-gi-base >= 0.24 && < 1
                     , mtl >= 2.2.2 && < 2.3
                     , primitive == 0.7.*
                     , ref-tf == 0.4.*
                     , reflex == 0.8.*
                     , semialign == 1.1.*
                     , stm == 2.5.*
                     , text >= 1.2.4 && < 1.3
                     , these >= 1.1.1 && < 1.2
  default-language:    Haskell2010

executable reflex-test
  hs-source-dirs:      example
  main-is:             Main.hs
  default-language:    Haskell2010
  build-depends:       reflex-gi-gtk
                     , base >= 4.7 && < 5
                     , containers >= 0.6.2 && < 0.7
                     , dependent-sum >= 0.7.1 && < 0.8
                     , gi-gtk == 3.*
                     , haskell-gi-base >= 0.24.5 && < 0.25
                     , mtl >= 2.2.2 && < 2.3
                     , patch == 0.0.*
                     , reflex == 0.8.*
                     , text >= 1.2.4 && < 1.3

source-repository head
  type:     git
  location: https://gitlab.com/Kritzefitz/reflex-gi-gtk