-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeferred-substitution.cabal
57 lines (52 loc) · 1.58 KB
/
deferred-substitution.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
-- This file has been generated from package.yaml by hpack version 0.20.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 92db0f58b247ae3fc299fe3c916f877f5dc187017aeb826878674cb0f51ad5b9
name: deferred-substitution
version: 0.1.0.0
synopsis: An implementation of deferred substitution
description: An implementation of Lambda-DSIM from Ben Lippmeier's functional pearl "Don't Substitute Into Abstractions"
category: Compiler
homepage: https://github.com/bts/deferred-substitution#readme
bug-reports: https://github.com/bts/deferred-substitution/issues
author: Brian Schroeder
maintainer: [email protected]
copyright: 2018 Brian Schroeder
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/bts/deferred-substitution
library
hs-source-dirs:
src
build-depends:
base >=4.7 && <5.0
, containers >=0.5.10 && <0.6
, mtl >=2.2.1 && <2.3
, text >=1.2 && <1.3
exposed-modules:
DeferredSubstitution
other-modules:
Paths_deferred_substitution
default-language: Haskell2010
test-suite deferred-substitution-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5.0
, containers >=0.5.10 && <0.6
, deferred-substitution
, mtl >=2.2.1 && <2.3
, text >=1.2 && <1.3
other-modules:
Paths_deferred_substitution
default-language: Haskell2010