diff --git a/simple-library.hsfiles b/simple-library.hsfiles index 39e02de..fea3603 100644 --- a/simple-library.hsfiles +++ b/simple-library.hsfiles @@ -1,28 +1,23 @@ -{-# START_FILE {{name}}.cabal #-} +{-# START_FILE package.yaml #-} name: {{name}} version: 0.1.0.0 --- synopsis: --- description: homepage: https://github.com/{{github-username}}{{^github-username}}githubuser{{/github-username}}/{{name}}#readme license: BSD3 -license-file: LICENSE author: {{author-name}}{{^author-name}}Author name here{{/author-name}} maintainer: {{author-email}}{{^author-email}}example@example.com{{/author-email}} copyright: {{copyright}}{{^copyright}}{{year}}{{^year}}2018{{/year}} {{author-name}}{{^author-name}}Author name here{{/author-name}}{{/copyright}} category: {{category}}{{^category}}Web{{/category}} -build-type: Simple -extra-source-files: README.md -cabal-version: >=1.10 +extra-source-files: +- README.md -library - hs-source-dirs: src - exposed-modules: Lib - build-depends: base >= 4.7 && < 5 - default-language: Haskell2010 +dependencies: + - base >= 4.7 && < 5 -source-repository head - type: git - location: https://github.com/{{github-username}}{{^github-username}}githubuser{{/github-username}}/{{name}} +library: + source-dirs: + - src + exposed-modules: + - Lib {-# START_FILE Setup.hs #-} import Distribution.Simple