-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathstrip.cabal
42 lines (38 loc) · 913 Bytes
/
strip.cabal
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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.3.
--
-- see: https://github.com/sol/hpack
name: strip
version: 0.0.0
author: Simon Hengel <[email protected]>
maintainer: Simon Hengel <[email protected]>
copyright: (c) 2013 Simon Hengel
license: MIT
license-file: LICENSE
build-type: Simple
library
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base ==4.*
exposed-modules:
Data.String.Strip
other-modules:
Paths_strip
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
ghc-options: -Wall
build-depends:
base ==4.*
, hspec ==2.*
, strip
other-modules:
Data.String.StripSpec
Paths_strip
default-language: Haskell2010
build-tool-depends: hspec-discover:hspec-discover == 2.*