-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstack-fpm.cabal
55 lines (51 loc) · 1.09 KB
/
stack-fpm.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
43
44
45
46
47
48
49
50
51
52
53
54
55
-- This file has been generated from package.yaml by hpack version 0.14.0.
--
-- see: https://github.com/sol/hpack
name: stack-fpm
version: 0.1.0.0
category: Distribution
homepage: https://gitlab.com/yamadapc/stack-fpm
author: Pedro Tacla Yamada
maintainer: [email protected]
license: AGPL-3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
ChangeLog.md
executable stack-fpm
main-is: Main.hs
hs-source-dirs:
src
build-depends:
base >=4.8 && <4.9
, protolude
, optparse-applicative
, directory
, filepath
, turtle
, Cabal
, yaml
, projectroot
default-language: Haskell2010
test-suite hspec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
build-depends:
base >=4.8 && <4.9
, protolude
, optparse-applicative
, directory
, filepath
, turtle
, Cabal
, yaml
, projectroot
, hspec
, QuickCheck
, language-dockerfile >=0.3.4
other-modules:
SanitySpec
default-language: Haskell2010