dots-of-war/xmonad/.xmonad/my-xmonad.cabal

37 lines
852 B
Text
Raw Normal View History

2020-06-21 10:41:26 +00:00
cabal-version: >=1.10
name: my-xmonad
version: 0.1.0.0
build-type: Simple
executable my-xmonad
main-is: ../xmonad.hs
hs-source-dirs: lib
other-modules:
Config
Rofi
DescribedSubmap
TiledDragging
WindowSwallowing
2020-08-18 22:25:19 +00:00
FancyBorders
2020-12-25 10:53:37 +00:00
WsContexts
MultiColumns
2021-01-02 16:33:37 +00:00
IndependentScreens
--FlexiColumns
2020-06-21 10:41:26 +00:00
default-language: Haskell2010
ghc-options: -Wall -threaded -fno-warn-missing-signatures
build-depends:
base -any,
xmonad >=0.16.99999 && < 0.18,
2020-12-25 10:53:37 +00:00
xmonad-contrib >=0.16,
2020-06-21 10:41:26 +00:00
dbus >=1.2.12,
iwlib >=0.1.0,
netlink >=1.1.1.0,
containers >=0.6.2.1,
utf8-string >=1.0.1.1,
text >=1.2.4.0,
process,
2021-01-02 16:33:37 +00:00
-- todo remove this again
X11>=1.10 && < 1.11
2021-01-02 16:33:37 +00:00