fixed the cabal file

This commit is contained in:
Yann Esposito (Yogsototh) 2013-11-20 17:27:40 +01:00
parent 2366e0b6c2
commit 47ae935949

View file

@ -1,11 +1,11 @@
-- Initial project.cabal generated by holy-project.
-- Initial {{projectName}}.cabal generated by holy-project.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: {{projectName}}
version: 0.1.0.0
synopsis: {{synopsis}}
-- description:
homepage: http://github.com/{{ghaccount}}/project
homepage: http://github.com/{{ghaccount}}/{{projectName}}
license: MIT
license-file: LICENSE
author: {{author}}
@ -16,7 +16,7 @@ build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable project
executable {{projectName}}
main-is: Main.hs
-- other-modules:
-- other-extensions:
@ -36,13 +36,13 @@ library
hs-source-dirs: src
default-language: Haskell2010
executable test-project
executable test-{{projectName}}
hs-source-dirs: test
ghc-options: -Wall
main-is: Test.hs
default-language: Haskell2010
build-depends: base ==4.6.*, Cabal >= 1.16.0
, project
, {{projectName}}
, HUnit
, QuickCheck
, smallcheck
@ -58,7 +58,7 @@ test-suite Tests
Type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base ==4.6.*, Cabal >= 1.16.0
, project
, {{projectName}}
, HUnit
, QuickCheck
, smallcheck