-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnoodle.cabal
28 lines (26 loc) · 1.04 KB
/
noodle.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
-- Initial noodle.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: noodle
version: 0.1.0.0
synopsis: Noodle - The real doole
-- description:
homepage: https://github.com/kmerz/noodle
license: BSD2
license-file: LICENSE
author: Konrad Merz
maintainer: [email protected]
-- copyright:
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable noodle
main-is: main.hs
other-modules: Noodle.Views.Index, Noodle.Views.Show, Noodle.Views.New
Noodle.Views.Edit, Noodle.Views.EditName
-- other-extensions:
build-depends: base >=4.7 && <4.8, scotty, blaze-html, monads-tf,
persistent, persistent-sqlite, time, transformers,
persistent-template, resourcet, text, containers
hs-source-dirs: src
default-language: Haskell2010