File: shell-conduit.cabal

package info (click to toggle)
haskell-shell-conduit 5.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112 kB
  • sloc: haskell: 607; makefile: 3
file content (64 lines) | stat: -rw-r--r-- 2,194 bytes parent folder | download | duplicates (3)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name:                shell-conduit
version:             5.0.0
synopsis:            Write shell scripts with Conduit
description:         Write shell scripts with Conduit. See "Data.Conduit.Shell" for documentation.
license:             BSD3
license-file:        LICENSE
author:              Chris Done
maintainer:          Sibi Prabakaran <sibi@psibi.in>
copyright:           2014-2017 Chris Done
category:            Conduit, Scripting
build-type:          Simple
cabal-version:       >= 1.10
homepage:            https://github.com/psibi/shell-conduit
extra-source-files:  CHANGELOG.md README.md
bug-reports:         https://github.com/psibi/shell-conduit/issues

library
  hs-source-dirs:    src/
  ghc-options:       -Wall -O2
  exposed-modules:   Data.Conduit.Shell
                     Data.Conduit.Shell.PATH
                     Data.Conduit.Shell.TH
                     Data.Conduit.Shell.Process
                     Data.Conduit.Shell.Types
                     Data.Conduit.Shell.Segments
                     Data.Conduit.Shell.Variadic
  build-depends:     async >= 2.0.1.5
                   , base >= 4 && <5
                   , bytestring
                   , conduit >= 1.3
                   , conduit-extra
                   , directory
                   , filepath
                   , monads-tf
                   , process >= 1.2.1.0
                   , resourcet >= 1.2.0
                   , unliftio
                   , semigroups
                   , split
                   , template-haskell
                   , text
                   , transformers
                   , unix >= 2.7.0.1
  default-language: Haskell2010

test-suite test
 type:            exitcode-stdio-1.0
 ghc-options:     -Wall -threaded
 hs-source-dirs:  test/
 main-is:         Spec.hs
    
 build-depends:   base >= 4.5 && < 5,
                  shell-conduit,
                  hspec >= 2.1 && < 3,
                  hspec-expectations,
                  template-haskell,
                  conduit,
                  bytestring,
                  conduit-extra
 default-language: Haskell2010

source-repository head
  type:     git
  location: http://github.com/psibi/shell-conduit