aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vogt <vogt.adam@gmail.com>2014-05-02 20:07:21 +0200
committerAdam Vogt <vogt.adam@gmail.com>2014-05-02 20:07:21 +0200
commit38c50886f6a6e85aa4750bf3d2e55924f2537264 (patch)
tree1a2ed1f5940deb62ff6926d1d96805f82c9d3ea9
parent9660a7a64c749e181d2114cc4b66a8aa4f88be0f (diff)
downloadxmonad-38c50886f6a6e85aa4750bf3d2e55924f2537264.tar.gz
xmonad-38c50886f6a6e85aa4750bf3d2e55924f2537264.tar.xz
xmonad-38c50886f6a6e85aa4750bf3d2e55924f2537264.zip
clean up cabal file
Ignore-this: b87b5c0f3b003d98efad3f0a654da2f7 We don't support ghc-6.6 anymore, so no need to include this split_base stuff. darcs-hash:20140502180721-1499c-b11c789a063d08f18cf485a0043d2e5959b85c90.gz
-rw-r--r--xmonad.cabal40
1 files changed, 18 insertions, 22 deletions
diff --git a/xmonad.cabal b/xmonad.cabal
index 0265a91..0098a56 100644
--- a/xmonad.cabal
+++ b/xmonad.cabal
@@ -26,11 +26,9 @@ cabal-version: >= 1.8
bug-reports: http://code.google.com/p/xmonad/issues/list
build-type: Simple
-tested-with: GHC==7.6.1,
- GHC==7.4.1,
- GHC==7.2.1,
- GHC==6.12.3,
- GHC==6.10.4
+tested-with:
+ GHC==7.6.2,
+ GHC==7.8.2
data-files: man/xmonad.hs, man/xmonad.1, man/xmonad.1.html
@@ -38,9 +36,6 @@ source-repository head
type: darcs
location: http://code.haskell.org/xmonad
-flag small_base
- description: Choose the new smaller, split-up base package.
-
flag testing
description: Testing mode, only build minimal components
default: False
@@ -56,13 +51,17 @@ library
XMonad.Operations
XMonad.StackSet
- if flag(small_base)
- build-depends: base < 5 && >=3, containers, directory, process, filepath, extensible-exceptions
- else
- build-depends: base < 3
- build-depends: X11>=1.5 && < 1.7, mtl, unix,
+ build-depends: base < 5 && >=3,
+ containers,
+ data-default,
+ directory,
+ extensible-exceptions,
+ filepath,
+ mtl,
+ process,
+ unix,
utf8-string >= 0.3 && < 0.4,
- data-default
+ X11>=1.5 && < 1.7
if true
ghc-options: -funbox-strict-fields -Wall
@@ -79,24 +78,21 @@ library
executable xmonad
main-is: Main.hs
build-depends: base,
- X11,
- unix,
mtl,
+ unix,
+ X11,
xmonad
ghc-options: -Wall
if impl(ghc >= 6.12.1)
- ghc-options: -fno-warn-unused-do-bind
-
- ghc-prof-options: -prof -auto-all
- extensions: CPP
+ ghc-options: -Wall -fno-warn-unused-do-bind
test-suite properties
type: exitcode-stdio-1.0
hs-source-dirs: tests
build-depends: base,
- QuickCheck >= 2,
- X11,
containers,
extensible-exceptions,
+ QuickCheck >= 2,
+ X11,
xmonad
main-is: Properties.hs