Merge pull request #1140 from phadej/src

Move library into src/
This commit is contained in:
Vidar Holen 2018-03-15 16:52:26 +00:00 committed by GitHub
commit fb97aca5a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 12 additions and 3 deletions

View File

@ -31,14 +31,21 @@ Extra-Source-Files:
-- tests
test/shellcheck.hs
custom-setup
setup-depends:
base >= 4 && <5,
process >= 1.0 && <1.7,
Cabal >= 1.10 && <2.3
source-repository head
type: git
location: git://github.com/koalaman/shellcheck.git
library
hs-source-dirs: src
build-depends:
base >= 4 && < 5,
containers,
containers >= 0.5,
directory,
json,
mtl >= 2.2.1,
@ -71,11 +78,12 @@ library
executable shellcheck
build-depends:
base >= 4 && < 5,
ShellCheck,
containers,
directory,
json,
json >= 0.3.6,
mtl >= 2.2.1,
parsec,
parsec >= 3.0,
regex-tdfa,
QuickCheck >= 2.7.4
main-is: shellcheck.hs
@ -84,6 +92,7 @@ test-suite test-shellcheck
type: exitcode-stdio-1.0
build-depends:
base >= 4 && < 5,
ShellCheck,
containers,
directory,
json,