2020-03-22 18:05:29 +00:00
|
|
|
name: my-xmonad
|
2020-03-22 18:06:44 +00:00
|
|
|
version: 0.1.0.0
|
2020-03-22 18:05:29 +00:00
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
executable my-xmonad
|
|
|
|
main-is: ../xmonad.hs
|
|
|
|
-- other-modules lists custom modules in my ~/.xmonad/lib/ directory
|
2020-03-22 18:06:44 +00:00
|
|
|
other-modules: Config
|
2020-03-25 14:25:15 +00:00
|
|
|
, Rofi
|
2020-03-22 18:05:29 +00:00
|
|
|
build-depends: base
|
|
|
|
, xmonad >= 0.13
|
|
|
|
, xmonad-contrib >= 0.13
|
2020-03-22 18:06:44 +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
|
2020-03-25 14:25:15 +00:00
|
|
|
, text >= 1.2.4.0
|
2020-03-22 18:05:29 +00:00
|
|
|
hs-source-dirs: lib
|
|
|
|
default-language: Haskell2010
|
2020-03-22 18:06:44 +00:00
|
|
|
ghc-options: -Wall -threaded -fno-warn-missing-signatures
|
|
|
|
-- -Werror -fno-warn-missing-signatures -threaded
|