summaryrefslogtreecommitdiff
path: root/photos.cabal
blob: d0908eca3d44219df46aedef063e2254daee2177 (plain)
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
name:                photos
version:             0.1.0.0
synopsis:            Photo organizer
description:         Please see README.md
homepage:            http://github.com/orbekk/photos#readme
license:             Apache
license-file:        LICENSE
author:              Kjetil Ørbekk
maintainer:          kjetil.orbekk@gmail.com
copyright:           2016 Kjetil Ørbekk
category:            Web
build-type:          Simple
cabal-version:       >=1.10

executable photos
  hs-source-dirs:      src
  main-is:             Main.hs
  other-modules:
      Data
    , PhotoStore
    , Authentication
  default-language:    Haskell2010
  build-depends:
      base >= 4.7 && < 5
    , aeson
    , bytestring
    , directory
    , either
    , extra
    , filepath
    , hflags
    , http-conduit
    , mtl
    , servant
    , servant-server
    , split
    , transformers
    , wai
    , wai-extra
    , warp