name: hlwm version: 0.1.0.2 x-revision: 1 synopsis: Bindings to the herbstluftwm window manager description: A client-side IPC implementation for herbstluftwm. license: BSD2 license-file: LICENSE author: Hans-Peter Deifel maintainer: homepage: https://github.com/hpdeifel/hlwm-haskell category: System build-type: Simple cabal-version: >=1.10 extra-source-files: README.md source-repository head type: git location: https://github.com/hpdeifel/hlwm-haskell.git flag examples description: Build example programs default: False library hs-source-dirs: src other-extensions: RecordWildCards, LambdaCase, MultiWayIf, TupleSections build-depends: base >=4.7 && <4.10 , X11 >=1.6 && <1.7 , transformers , stm , unix build-tools: hsc2hs default-language: Haskell2010 exposed-modules: HLWM.IPC, HLWM.IPC.Internal other-modules: Graphics.X11.Xlib.Herbst ghc-options: -Wall executable hherbstclient hs-source-dirs: examples main-is: HerbstClient.hs other-extensions: RecordWildCards, LambdaCase, MultiWayIf, TupleSections build-depends: base >=4.7 && <4.10 , X11 >=1.6 && <1.7 , transformers , stm , unix , hlwm build-tools: hsc2hs default-language: Haskell2010 ghc-options: -Wall -threaded if !flag(examples) buildable: False