packages feed

reactive-banana-gi-gtk-0.4.1.0: reactive-banana-gi-gtk.cabal

cabal-version: >=1.10
name: reactive-banana-gi-gtk
version: 0.4.1.0
license: PublicDomain
license-file: LICENSE
maintainer: mrobinson7627@gmail.com
author: Megan Robinson
homepage: https://github.com/mr/reactive-banana-gi-gtk
synopsis: Simple reactive programming with GTK GObject Introspection
description:
    Create Events and Behaviors from GTK signals and attributes. Also supports sinking to attributes.
category: Development
build-type: Simple

source-repository head
    type: git
    location: https://github.com/mr/reactive-banana-gi-gtk.git

library
    exposed-modules:
        Reactive.Banana.GI.Gtk
    hs-source-dirs: src
    default-language: Haskell2010
    build-depends:
        base >=4.7 && <5,
        reactive-banana >=1.2.1.0 && <1.3,
        gi-gtk >=3.0.1.1 && <5.0,
        haskell-gi-base >=0.20 && <0.24,
        transformers >=0.5.2.0 && <0.6,
        text >=1.2.2.1 && <1.3

test-suite reactive-banana-gi-gtk-test
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    hs-source-dirs: test
    default-language: Haskell2010
    ghc-options: -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        base >=4.13.0.0 && <4.14,
        reactive-banana-gi-gtk -any