aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorThéophile Choutri <theophile.choutri@fretlink.com>2020-06-04 14:40:29 +0200
committerThéophile Choutri <theophile.choutri@fretlink.com>2020-06-04 14:40:29 +0200
commit76f7d1be6e5658c992773114b5a88c142511fda9 (patch)
tree1fe8f55beda30327a89ad99365d613110f2836e7
parent7ffc5d887764e17bb454717caae14a5012b9d927 (diff)
downloadsqueal-hspec-76f7d1be6e5658c992773114b5a88c142511fda9.tar.gz
squeal-hspec-76f7d1be6e5658c992773114b5a88c142511fda9.tar.zst
squeal-hspec-76f7d1be6e5658c992773114b5a88c142511fda9.zip
Commit the cabal file
-rw-r--r--.gitignore3
-rw-r--r--squeal-hspec.cabal64
2 files changed, 65 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 2449568..76467e6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,2 @@
1.stack-work/ 1.stack-work/
2squeal-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 @@
1cabal-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
9name: squeal-hspec
10version: 0.1.0.0
11description: Please see the README on GitHub at <https://github.com/githubuser/squeal-hspec#readme>
12homepage: https://github.com/githubuser/squeal-hspec#readme
13bug-reports: https://github.com/githubuser/squeal-hspec/issues
14author: Author name here
15maintainer: example@example.com
16copyright: 2019 Author name here
17license: BSD3
18license-file: LICENSE
19build-type: Simple
20extra-source-files:
21 README.md
22 ChangeLog.md
23
24source-repository head
25 type: git
26 location: https://github.com/githubuser/squeal-hspec
27
28library
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
46test-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