-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-server.cabal
38 lines (35 loc) · 1.32 KB
/
build-server.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
name: build-server
version: 0.1.0.0
synopsis: Haskell Bake + Kubernetes CI/CD
author: Brian Jones
maintainer: [email protected]
copyright: 2016 Uncanny Works
license: MIT
license-file: LICENSE
cabal-version: >=1.10
executable build-server
hs-source-dirs: build
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, bake >= 0.5 && < 0.6
, shake >= 0.15 && < 0.16
default-language: Haskell2010
executable build-hook
hs-source-dirs: hook
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, aeson >= 0.11 && < 1.1
, bytestring >= 0.10 && < 0.11
, lens >= 4.14 && < 4.16
, lens-aeson >= 1.0 && < 1.1
, http-conduit >= 2.1 && < 2.3
, servant-server >= 0.8 && < 0.9
, text >= 1.2 && <1.3
, wai >= 3.2 && < 3.3
, warp >= 3.2 && < 3.3
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/uncannyworks/build-server.git