This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
phi/phi.cabal
Matthias Schiffer 028c4243a8 Use CacheArrow for rendering
Extremely hacky at the moment, for now the caching isn't used at all...
2011-08-21 05:38:37 +02:00

28 lines
1.1 KiB
Text

cabal-version: >= 1.8
name: phi
version: 0.1
synopsis: An X panel
description: An X panel
category: X11
license: BSD3
license-file: LICENSE
author: Matthias Schiffer
maintainer: mschiffer@universe-factory.net
build-type: Simple
library
build-depends: base >= 4, template-haskell, stm, array, containers, transformers, mtl, utf8-string, time, old-locale, X11, cairo, pango, unix, arrows, CacheArrow
exposed-modules: Phi.Types, Phi.Phi, Phi.Panel, Phi.Widget, Phi.Border, Phi.X11,
Phi.Widgets.AlphaBox, Phi.Widgets.Clock, Phi.Widgets.Taskbar, Phi.Widgets.Systray
other-modules: Phi.X11.Atoms, Phi.X11.AtomList, Phi.Bindings.Util, Phi.Bindings.SystrayErrorHandler
c-sources: csrc/SystrayErrorHandler.c
include-dirs: include
hs-source-dirs: lib
extra-libraries: X11
pkgconfig-depends: cairo >= 1.2.0, cairo-xlib
ghc-options: -fspec-constr-count=16 -threaded
executable Phi
build-depends: base >= 4, phi
hs-source-dirs: src
main-is: Phi.hs