noodle/noodle.cabal

29 lines
1 KiB
Text
Raw Normal View History

2015-03-28 07:47:36 +00:00
-- 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: kmerz@hulud.net
-- copyright:
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable noodle
main-is: main.hs
2015-03-28 15:02:55 +00:00
other-modules: Noodle.Views.Index, Noodle.Views.Show, Noodle.Views.New
Noodle.Views.Edit, Noodle.Views.EditName
2015-03-28 07:47:36 +00:00
-- other-extensions:
2019-09-02 13:06:46 +00:00
build-depends: base, scotty, blaze-html, monads-tf,
2015-03-28 10:21:30 +00:00
persistent, persistent-sqlite, time, transformers,
persistent-template, resourcet, text, containers
2015-03-28 07:47:36 +00:00
hs-source-dirs: src
default-language: Haskell2010