-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathalex-tools.cabal
29 lines (27 loc) · 1021 Bytes
/
alex-tools.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
cabal-version: 2.0
name: alex-tools
version: 0.6.1
synopsis: A set of functions for a common use case of Alex.
description: This captures a common pattern for using Alex.
license: ISC
license-file: LICENSE
author: Iavor S. Diatchki
maintainer: [email protected]
copyright: Iavor S. Diatchki, 2016
category: Development
build-type: Simple
extra-source-files: ChangeLog.md
source-repository head
type: git
location: https://github.com/GaloisInc/alex-tools
library
exposed-modules: AlexTools, AlexToolsBin
other-extensions: TemplateHaskell
build-depends: base >=4.7 && <4.21,
text >= 1.2.4 && < 2.2,
bytestring >= 0.9 && <0.13,
deepseq >=1.3 && <1.6,
template-haskell >=2.9.0 && <2.23
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010