diff options
author | Joris | 2016-01-08 00:28:36 +0100 |
---|---|---|
committer | Joris | 2016-01-08 00:28:36 +0100 |
commit | 2bc7a4e004d5b57933672fa9d440469367d28c93 (patch) | |
tree | 49278daf1fdee8cbe9881e05ff4579fee4abf524 /SharedCost.cabal | |
parent | 6b090b3bdef7108d51d93207e28b148c121767aa (diff) |
Nix package manager instructions
Diffstat (limited to 'SharedCost.cabal')
-rw-r--r-- | SharedCost.cabal | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/SharedCost.cabal b/SharedCost.cabal new file mode 100644 index 0000000..1141cb9 --- /dev/null +++ b/SharedCost.cabal @@ -0,0 +1,43 @@ +name: SharedCost +version: 0.1 +license: GPL-3 +license-file: LICENSE +author: Joris +maintainer: joris.guyonvarch@gmail.com +category: Web +build-type: Simple +cabal-version: >=1.10 + +executable SharedCost + main-is: Main.hs + hs-source-dirs: src/server + default-language: Haskell2010 + build-depends: base >=4.8 && <4.9 + , scotty + , wai + , wai-middleware-static + , http-types + , http-conduit + , time + , text + , bytestring + , persistent + , persistent-sqlite + , persistent-template + , esqueleto + , monad-logger + , resourcet + , transformers + , blaze-html + , clay + , aeson + , scotty-cookie + , clientsession + , uuid + , mime-mail + , ConfigFile + , mtl + , lens + , parsec + , unordered-containers + , containers |