-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhskpipe.cabal
68 lines (54 loc) · 2.11 KB
/
hskpipe.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: hskpipe
-- +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.2.0.0
synopsis: Shen core (K|) in Haskell
description: An implementation of the Shen core language (K|) in Haskell
license: GPL-3
license-file: LICENSE
author: Remy Goldschmidt
homepage: https://github.com/taktoa/hskpipe
maintainer: [email protected]
category: Math
build-type: Simple
cabal-version: >=1.10
test-suite Test-hskpipe
test-module: Tests
other-modules: Compile, Parse
type: detailed-0.9
default-extensions: BangPatterns
, OverloadedStrings
, OverloadedLists
, TupleSections
, GADTs
build-depends: base >=4.6 && <4.9
, parsec >=3.1 && <3.2
, text >=1.2 && <1.3
, containers >=0.5 && <0.6
, QuickCheck >=2.7 && <2.8
, cabal-test-quickcheck >=0.1 && <0.2
, Cabal >=1.18 && <1.19
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
executable hskpipe
main-is: Main.hs
default-extensions: BangPatterns
, OverloadedStrings
, OverloadedLists
, TupleSections
, GADTs
build-depends: base >=4.6 && <4.9
, parsec >=3.1 && <3.2
, text >=1.2 && <1.3
, containers >=0.5 && <0.6
, haskeline >=0.7 && <0.8
, hashable >=1.2 && <1.3
, llvm-general-pure >=3.4 && <3.5
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/taktoa/hskpipe.git