packages feed

reflex-gi-gtk-0.2.0.1: reflex-gi-gtk.cabal

name:                reflex-gi-gtk
version:             0.2.0.1
synopsis:            Helper functions to use reflex with gi-gtk
description:
  This package provides a a reflex host and helper
  functions to create reactive GUI applications
  using gi-gtk and reflex.
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
                   , changelog.md
                   , stack.yaml
                   , stack.yaml.lock
stability:           experimental
cabal-version:       2.0

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
                     , Reflex.GI.Gtk.Widget
                     , Reflex.GI.Gtk.Widget.Bin
                     , Reflex.GI.Gtk.Widget.Box
                     , Reflex.GI.Gtk.Widget.Utils
  other-modules:       Reflex.GI.Gtk.Run.Base
                     , Reflex.GI.Gtk.Run.Class
                     , Reflex.GI.Gtk.Widget.Ord
  build-depends:       async ^>= 2.2.2
                     , base >= 4.13 && < 5
                     , containers ^>= 0.6.2
                     , dependent-sum ^>= 0.7.1
                     , exception-transformers ^>= 0.4
                     , gi-gdk ^>= 3.0
                     , gi-glib ^>= 2.0
                     , gi-gtk ^>= 3.0
                     , haskell-gi-base >= 0.24 && < 0.27
                     , mtl ^>= 2.2.2 || ^>= 2.3
                     , primitive ^>= 0.7
                     , ref-tf ^>= 0.4 || ^>= 0.5
                     , reflex ^>= 0.8 || ^>= 0.9
                     , semialign >= 1.1 && < 1.4
                     , stm ^>= 2.5
                     , text >= 1.2.4 && < 2.1
                     , these ^>= 1.1.1 || ^>= 1.2
                     , witherable ^>= 0.3.5 || ^>= 0.4
  default-language:    Haskell2010

executable reflex-gi-gtk-example
  hs-source-dirs:      example
  main-is:             Main.hs
  default-language:    Haskell2010
  build-depends:       reflex-gi-gtk
                     , base >= 4.13 && < 5
                     , containers ^>= 0.6.2
                     , dependent-sum ^>= 0.7.1
                     , gi-gtk ^>= 3.0
                     , haskell-gi-base >= 0.24.5 && < 0.27
                     , mtl ^>= 2.2.2 || ^>= 2.3
                     , patch ^>= 0.0
                     , reflex ^>= 0.9
                     , text >= 1.2.4 && < 2.1
  ghc-options:         -threaded

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