From 47ae93594913262e6de93d16c2cad92621580991 Mon Sep 17 00:00:00 2001 From: "Yann Esposito (Yogsototh)" Date: Wed, 20 Nov 2013 17:27:40 +0100 Subject: [PATCH] fixed the cabal file --- scaffold/project.cabal | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scaffold/project.cabal b/scaffold/project.cabal index 13ee7a6..9bb01fa 100644 --- a/scaffold/project.cabal +++ b/scaffold/project.cabal @@ -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