packages feed

sindre-0.6: sindre.cabal

cabal-version: 2.4
name:               sindre
version:            0.6
homepage:           http://sigkill.dk/programs/sindre
synopsis:           A programming language for simple GUIs
description:
    Sindre is a language inspired by Awk, meant for creating very simple
    graphical user interfaces.
category:           GUI
license:            BSD-3-Clause
license-file:       LICENSE
author:             Troels Henriksen
maintainer:         athas@sigkill.dk

source-repository head
  type:     git
  location: git@github.com:Athas/Sindre.git

executable sindre
    main-is:            Main.hs
    other-modules:      Sindre.X11
                        Sindre.Util
                        Sindre.Parser
                        Sindre.Widgets
                        Sindre.Runtime
                        Sindre.Compiler
                        Sindre.Sindre
                        Sindre.Lib
                        Sindre.Formatting
                        Sindre.KeyVal
                        Sindre.Main
                        Graphics.X11.Xft
                        Paths_sindre
    autogen-modules: Paths_sindre

    build-depends:      X11, X11-xshape>=0.1.1, X11-rm>=0.2,
                        mtl, base >= 4.3 && < 5, containers, parsec>=3.1, array>=0.3,
                        x11-xim>=0.0.6, setlocale, regex-pcre, process,
                        text, bytestring, unix, attoparsec>=0.10,
                        permute, utf8-string>=0.3

    ghc-options:        -Wall

    ghc-prof-options:   -rtsopts
    pkgconfig-depends:  xft, xext
    default-language:   Haskell2010

library
    exposed-modules:    Sindre.X11
                        Sindre.Util
                        Sindre.Parser
                        Sindre.Widgets
                        Sindre.Runtime
                        Sindre.Compiler
                        Sindre.Sindre
                        Sindre.Lib
                        Sindre.Formatting
                        Sindre.KeyVal
                        Sindre.Main
                        Graphics.X11.Xft

    other-modules:      Paths_sindre
    autogen-modules: Paths_sindre


    build-depends:      X11>=1.5.0.0, X11-xshape>=0.1.1, X11-rm,
                        mtl, base >= 4.3 && < 5, containers, parsec>=3.1, array>=0.3,
                        x11-xim>=0.0.5, setlocale, regex-pcre, process,
                        text, bytestring, unix, attoparsec>=0.10.1.0,
                        permute, utf8-string>=0.3
    pkgconfig-depends:  xft, xext
    default-language:   Haskell2010