summaryrefslogtreecommitdiffhomepage
path: root/xmobar-config.cabal
blob: 9492938bd18b2519e987dc1c785ae30d01b5b837 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name:           xmobar-config
version:        0.1
description:    xmobar configs
author:         jao
maintainer:     jao@gnu.org
copyright:      2018, 2019 Jose A Ortega Ruiz
license:        GPL-3
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    readme.md

library
  hs-source-dirs: src/lib
  exposed-modules: Config, Monitors, Bottom, Music
  build-depends: base >=4.7 && <5, async > 2.2, stm >= 2.5, xmobar
  other-modules: Paths_xmobar_config
  default-language: Haskell2010

executable xmobar-top
  main-is: Top.hs
  hs-source-dirs: src
  ghc-options: -rtsopts -with-rtsopts=-V0
  build-depends: base, xmobar, xmobar-config
  default-language: Haskell2010

executable xmobar-bottom
  main-is: Bottom.hs
  hs-source-dirs: src
  ghc-options: -rtsopts -with-rtsopts=-V0
  build-depends: base, xmobar, xmobar-config
  default-language: Haskell2010