diff options
-rw-r--r-- | xmonad-ng.cabal | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/xmonad-ng.cabal b/xmonad-ng.cabal index 661113c..e79637b 100644 --- a/xmonad-ng.cabal +++ b/xmonad-ng.cabal @@ -1,7 +1,7 @@ name: xmonad-ng -version: 0.1.0.0 +version: 0.2.0.0 synopsis: azahi's XMonad configuration -description: azahi's XMonad configuration with a few tweaks to properly work with upstream changes +description: azahi's XMonad configuration based on stolen code and bad Haskell knowledge homepage: https://github.com/azahi/xmonad-ng license: BSD3 license-file: LICENSE @@ -22,20 +22,22 @@ library XMonad.Actions.FloatSnapSpaced XMonad.Actions.PerConditionKeys ghc-options: -Wall - build-depends: base >= 4.9 && < 4.10 - , containers >= 0.5 && < 0.6 - , xmonad >= 0.13 && < 0.14 - , xmonad-contrib >= 0.13 && < 0.14 + build-depends: base >= 4.9 && < 4.10 + , containers >= 0.5 && < 0.6 + , xmonad >= 0.13 && < 0.14 + , xmonad-contrib >= 0.13 && < 0.14 hs-source-dirs: src default-language: Haskell2010 executable xmonad-ng main-is: Main.hs - ghc-options: -Wall - build-depends: base >= 4.9 && < 4.10 + ghc-options: -Wall -Wno-missing-signatures + build-depends: X11 >= 1.8 && < 1.9 + , base >= 4.9 && < 4.10 , containers >= 0.5 && < 0.6 , directory >= 1.3.0 && < 1.4 , filepath >= 1.4.1 && < 1.5 + , text >= 1.2.3 && < 1.3 , time >= 1.6.0 && < 1.7 , xmonad >= 0.13 && < 0.14 , xmonad-contrib >= 0.13 && < 0.14 |