aboutsummaryrefslogtreecommitdiff
path: root/ldapply.cabal
blob: 014f1f46aae4bbb8604bc25432aad47892d147bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: ldapply
version: 0.2.0
synopsis: LDIF idempotent apply tool
license: MIT
license-file: LICENSE
author: Igor Pashev <pashev.igor@gmail.com>
maintainer: Igor Pashev <pashev.igor@gmail.com>
copyright: 2017, Zalora South East Asia Pte. Ltd
category: Network, Text
build-type: Simple
cabal-version: 1.20
extra-source-files: README.md ChangeLog.md

source-repository head
  type: git
  location: https://github.com/ip1981/ldapply.git

executable ldapply
  hs-source-dirs: src
  main-is: Main.hs
  default-language: Haskell2010
  ghc-options: -Wall -static -threaded

  build-depends:
      base >=4.8 && < 50
    , bytestring
    , docopt
    , interpolatedstring-perl6
    , LDAP > 0.6.10
    , ldif
    , unordered-containers