summaryrefslogtreecommitdiffhomepage
path: root/xmobar-config.cabal
blob: 4ab8d7386b76a5d8a9820eb0db5b2aa796db16ef (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
34
name:           xmobar-config
version:        0.1
description:    xmobar configs
author:         jao
maintainer:     jao@gnu.org
copyright:      2018 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, Bottom, Mpris, MPD
  build-depends: base >=4.7 && <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