haskell.cabal (800B)
1 cabal-version: 2.4 2 name: haskell 3 version: 0.1.0.0 4 5 -- A short (one-line) description of the package. 6 -- synopsis: 7 8 -- A longer description of the package. 9 -- description: 10 11 -- A URL where users can report bugs. 12 -- bug-reports: 13 14 -- The license under which the package is released. 15 -- license: 16 author: thing 1 17 maintainer: thing1@seacrossedlovers.xyz 18 19 -- A copyright notice. 20 -- copyright: 21 -- category: 22 extra-source-files: CHANGELOG.md 23 24 executable haskell 25 main-is: Main.hs 26 27 -- Modules included in this executable, other than Main. 28 -- other-modules: 29 30 -- LANGUAGE extensions used by modules in this package. 31 -- other-extensions: 32 build-depends: base ^>=4.16.4.0 33 hs-source-dirs: app 34 default-language: Haskell2010