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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
| name: xmonadextras
version: 0.10.1.2
homepage: http://projects.haskell.org/xmonadextras
synopsis: Third party extensions for xmonad with wacky dependencies
description: Various modules for xmonad that cannot be added to xmonadcontrib
because of additional dependencies.
category: System
license: BSD3
licensefile: LICENSE
author: The Daniels Schoepe and Wagner
maintainer: daniel@wagnerhome.com, daniel.schoepe@googlemail.com
cabalversion: >= 1.2.1
buildtype: Simple
flag small_base
description: Choose the new smaller, splitup base package.
flag with_parsec
description: Build modules depending on the parsec package
flag with_split
description: Build modules depending on Data.Split
flag with_hint
description: Build modules depending on hint(for evaluating Haskell expressions at runtime).
default: True
flag with_mpd
description: Build modules depending on libmpd.
flag with_hlist
description: Build modules depending on HList.
default: False
flag with_regex_posix
description: Build modules depending on posixregex.
flag with_template_haskell
description: Build modules depending on template haskell.
flag testing
description: Testing mode
default: False
library
if flag(small_base)
builddepends: base >= 3 && < 5, containers, directory, process, random, oldtime, oldlocale
else
builddepends: base < 3
builddepends: mtl, unix, X11>=1.4.3, xmonad>=0.10 && <0.11, xmonadcontrib>=0.10 && <0.11
if true
ghcoptions: fwarntabs Wall
if flag(testing)
ghcoptions: Werror
if impl (ghc == 6.10.1) && arch (x86_64)
ghcoptions: --disable-optimizations
if flag(with_parsec) && flag(with_split)
builddepends: parsec >= 2 && < 4, split >= 0.1 && < 0.3
exposedmodules: XMonad.Actions.Volume
if flag(with_hint)
if impl(ghc < 7.2)
builddepends: hint >= 0.3 && < 0.4, network
else
builddepends: hint >= 0.3.3.3 && < 0.4, network
exposedmodules: XMonad.Actions.Eval XMonad.Prompt.Eval
if flag(with_mpd)
builddepends: libmpd >= 0.8 && < 0.9, bytestring >= 0.9 && < 0.11
exposedmodules: XMonad.Prompt.MPD
if flag(with_regex_posix)
builddepends: regexposix
exposedmodules: XMonad.Util.WindowPropertiesRE
if impl(ghc >= 6.12.1) && flag(with_template_haskell) && flag(with_hlist)
builddepends: templatehaskell, HList >= 0.2.3 && < 0.3
exposedmodules: XMonad.Config.Alt
XMonad.Config.Alt.Desktop
XMonad.Config.Alt.Sample
XMonad.Config.Alt.Internal
XMonad.Config.Alt.QQ
othermodules: XMonad.Config.Alt.Types
exposedmodules: XMonad.Hooks.PerWindowKbdLayout
if impl(ghc >= 6.12.1)
ghcoptions: fnowarnunuseddobind
|