diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | squeal-hspec.cabal | 64 |
2 files changed, 65 insertions, 2 deletions
@@ -1,3 +1,2 @@ | |||
1 | .stack-work/ | 1 | .stack-work/ |
2 | squeal-hspec.cabal | 2 | *~ |
3 | *~ \ No newline at end of file | ||
diff --git a/squeal-hspec.cabal b/squeal-hspec.cabal new file mode 100644 index 0000000..aa5d773 --- /dev/null +++ b/squeal-hspec.cabal | |||
@@ -0,0 +1,64 @@ | |||
1 | cabal-version: 1.12 | ||
2 | |||
3 | -- This file has been generated from package.yaml by hpack version 0.33.0. | ||
4 | -- | ||
5 | -- see: https://github.com/sol/hpack | ||
6 | -- | ||
7 | -- hash: 9cdcbd18496e9bcf710b5b8f1b08b1a29e0021262e26fa8dfa77a46ce893d8e0 | ||
8 | |||
9 | name: squeal-hspec | ||
10 | version: 0.1.0.0 | ||
11 | description: Please see the README on GitHub at <https://github.com/githubuser/squeal-hspec#readme> | ||
12 | homepage: https://github.com/githubuser/squeal-hspec#readme | ||
13 | bug-reports: https://github.com/githubuser/squeal-hspec/issues | ||
14 | author: Author name here | ||
15 | maintainer: example@example.com | ||
16 | copyright: 2019 Author name here | ||
17 | license: BSD3 | ||
18 | license-file: LICENSE | ||
19 | build-type: Simple | ||
20 | extra-source-files: | ||
21 | README.md | ||
22 | ChangeLog.md | ||
23 | |||
24 | source-repository head | ||
25 | type: git | ||
26 | location: https://github.com/githubuser/squeal-hspec | ||
27 | |||
28 | library | ||
29 | exposed-modules: | ||
30 | Squeal.PostgreSQL.Hspec | ||
31 | other-modules: | ||
32 | Paths_squeal_hspec | ||
33 | hs-source-dirs: | ||
34 | src | ||
35 | build-depends: | ||
36 | base >=4.7 && <5 | ||
37 | , bytestring | ||
38 | , generics-sop | ||
39 | , hspec | ||
40 | , monad-control | ||
41 | , squeal-postgresql | ||
42 | , tmp-postgres | ||
43 | , transformers-base | ||
44 | default-language: Haskell2010 | ||
45 | |||
46 | test-suite squeal-hspec-test | ||
47 | type: exitcode-stdio-1.0 | ||
48 | main-is: Spec.hs | ||
49 | other-modules: | ||
50 | Paths_squeal_hspec | ||
51 | hs-source-dirs: | ||
52 | test | ||
53 | ghc-options: -threaded -rtsopts -with-rtsopts=-N | ||
54 | build-depends: | ||
55 | base >=4.7 && <5 | ||
56 | , bytestring | ||
57 | , generics-sop | ||
58 | , hspec | ||
59 | , monad-control | ||
60 | , squeal-hspec | ||
61 | , squeal-postgresql | ||
62 | , tmp-postgres | ||
63 | , transformers-base | ||
64 | default-language: Haskell2010 | ||