My omnium-gatherom of scripts and source code.
1cabal-version: 2.4
2name: combinators
3version: 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:
16author: Sunglas
17maintainer: diego.estrada1@proton.me
18
19-- A copyright notice.
20-- copyright:
21-- category:
22extra-source-files: CHANGELOG.md
23
24library
25 exposed-modules: MyLib
26
27 -- Modules included in this library but not exported.
28 -- other-modules:
29
30 -- LANGUAGE extensions used by modules in this package.
31 -- other-extensions:
32 build-depends: base ^>=4.17.2.0
33 hs-source-dirs: src
34 default-language: Haskell2010
35
36executable combinators
37 main-is: Main.hs
38
39 -- Modules included in this executable, other than Main.
40 -- other-modules:
41
42 -- LANGUAGE extensions used by modules in this package.
43 -- other-extensions:
44 build-depends:
45 base ^>=4.17.2.0,
46 combinators
47
48 hs-source-dirs: app
49 default-language: Haskell2010