update cabal file, add text and sqlite dependencies
This commit is contained in:
parent
29215421f3
commit
ab1a278660
|
@ -4,7 +4,7 @@
|
||||||
-- The name of the package.
|
-- The name of the package.
|
||||||
name: time-wasting-thread-memorial
|
name: time-wasting-thread-memorial
|
||||||
|
|
||||||
-- The package version. See the Haskell package versioning policy (PVP)
|
-- The package version. See the Haskell package versioning policy (PVP)
|
||||||
-- for standards guiding when and how versions should be incremented.
|
-- for standards guiding when and how versions should be incremented.
|
||||||
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
|
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
|
||||||
-- PVP summary: +-+------- breaking API changes
|
-- PVP summary: +-+------- breaking API changes
|
||||||
|
@ -16,7 +16,7 @@ version: 0.1.0.0
|
||||||
synopsis: A public memorial site for Derpibooru's first Time Wasting Thread
|
synopsis: A public memorial site for Derpibooru's first Time Wasting Thread
|
||||||
|
|
||||||
-- A longer description of the package.
|
-- A longer description of the package.
|
||||||
-- description:
|
-- description:
|
||||||
|
|
||||||
-- The license under which the package is released.
|
-- The license under which the package is released.
|
||||||
license: PublicDomain
|
license: PublicDomain
|
||||||
|
@ -27,20 +27,20 @@ license-file: LICENSE
|
||||||
-- The package author(s).
|
-- The package author(s).
|
||||||
author: Christine Dodrill
|
author: Christine Dodrill
|
||||||
|
|
||||||
-- An email address to which users can send suggestions, bug reports, and
|
-- An email address to which users can send suggestions, bug reports, and
|
||||||
-- patches.
|
-- patches.
|
||||||
maintainer: xena@yolo-swag.com
|
maintainer: xena@yolo-swag.com
|
||||||
|
|
||||||
-- A copyright notice.
|
-- A copyright notice.
|
||||||
-- copyright:
|
-- copyright:
|
||||||
|
|
||||||
category: Web
|
category: Web
|
||||||
|
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
|
|
||||||
-- Extra files to be distributed with the package, such as examples or a
|
-- Extra files to be distributed with the package, such as examples or a
|
||||||
-- README.
|
-- README.
|
||||||
-- extra-source-files:
|
-- extra-source-files:
|
||||||
|
|
||||||
-- Constraint on the version of Cabal needed to build this package.
|
-- Constraint on the version of Cabal needed to build this package.
|
||||||
cabal-version: >=1.10
|
cabal-version: >=1.10
|
||||||
|
@ -49,20 +49,23 @@ cabal-version: >=1.10
|
||||||
executable time-wasting-thread-memorial
|
executable time-wasting-thread-memorial
|
||||||
-- .hs or .lhs file containing the Main module.
|
-- .hs or .lhs file containing the Main module.
|
||||||
main-is: Main.hs
|
main-is: Main.hs
|
||||||
|
|
||||||
-- Modules included in this executable, other than Main.
|
-- Modules included in this executable, other than Main.
|
||||||
-- other-modules:
|
-- other-modules:
|
||||||
|
|
||||||
-- LANGUAGE extensions used by modules in this package.
|
-- LANGUAGE extensions used by modules in this package.
|
||||||
-- other-extensions:
|
-- other-extensions:
|
||||||
|
|
||||||
-- Other library packages from which modules are imported.
|
-- Other library packages from which modules are imported.
|
||||||
build-depends: base >=4.6 && <4.7
|
build-depends: base >=4.6 && <4.7
|
||||||
, Spock >=0.7.9
|
, Spock >=0.7.9
|
||||||
|
, sqlite-simple >=0.4.9.0
|
||||||
|
, text >=1.2.1.1
|
||||||
|
|
||||||
-- Directories containing source files.
|
-- Directories containing source files.
|
||||||
hs-source-dirs: src
|
hs-source-dirs: src
|
||||||
|
|
||||||
-- Base language which the package is written in.
|
-- Base language which the package is written in.
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
|
||||||
|
-- vim: set ts=2 sw=2 tw=0 et :
|
||||||
|
|
Loading…
Reference in New Issue