diff options
Diffstat (limited to 'libraries/libiserv/libiserv.cabal')
-rw-r--r-- | libraries/libiserv/libiserv.cabal | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/libraries/libiserv/libiserv.cabal b/libraries/libiserv/libiserv.cabal new file mode 100644 index 0000000000..196d36ce68 --- /dev/null +++ b/libraries/libiserv/libiserv.cabal @@ -0,0 +1,39 @@ +Name: libiserv +Version: 8.7.1 +Copyright: XXX +License: BSD3 +License-File: LICENSE +Author: XXX +Maintainer: XXX +Synopsis: Provides shared functionality between iserv and iserv-proxy +Description: +Category: Development +build-type: Simple +cabal-version: >=1.10 + +Flag network + Description: Build libiserv with over-the-network support + Default: False + +Library + Default-Language: Haskell2010 + Hs-Source-Dirs: src + Exposed-Modules: Lib + , GHCi.Utils + Build-Depends: base >= 4 && < 5, + binary >= 0.7 && < 0.11, + bytestring >= 0.10 && < 0.11, + containers >= 0.5 && < 0.7, + deepseq >= 1.4 && < 1.5, + ghci == 8.7.* + if flag(network) + Exposed-Modules: Remote.Message + , Remote.Slave + Build-Depends: network >= 2.6 && < 2.7, + directory >= 1.3 && < 1.4, + filepath >= 1.4 && < 1.5 + + if os(windows) + Cpp-Options: -DWINDOWS + else + Build-Depends: unix >= 2.7 && < 2.9 |