-
Notifications
You must be signed in to change notification settings - Fork 0
/
yip.cabal
45 lines (36 loc) · 1018 Bytes
/
yip.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
cabal-version: 3.0
name: yip
version: 0.0.0
synopsis: A very simple preprocessor
category: Text
license: AGPL-3.0-or-later
license-file: LICENSE
author: Carter "pyrotelekinetic" Ison
maintainer: carter@isons.org
copyright: (C) 2023,2024 Carter "pyrotelekinetic" Ison <carter@isons.org>
extra-doc-files: README.md
build-type: Simple
executable yip
hs-source-dirs: app
main-is: Main.hs
other-modules:
Command
Parser
-- Libraries are locked with 'cabal freeze' to the version provided by nix.
build-depends:
, base
, megaparsec
, optparse-applicative
, text
, containers
, bytestring
, filepath
, directory
default-extensions:
OverloadedStrings
LambdaCase
ghc-options:
-Wall
-Wno-unused-do-bind
-Wno-name-shadowing
default-language: GHC2021