-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathalgebraic-data.cabal
More file actions
42 lines (38 loc) · 1.36 KB
/
algebraic-data.cabal
File metadata and controls
42 lines (38 loc) · 1.36 KB
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
-- Initial Algebraic.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: algebraic-data
version: 0.1.0.0
synopsis: Algebraic datatypes
-- description:
license: BSD3
license-file: LICENSE
author: Alexander Vieth
maintainer: aovieth@gmail.com
-- copyright:
category: Data
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: Data.Algebraic.Product
, Data.Algebraic.Index
, Data.Algebraic.MapThroughArrows
, Data.Algebraic.Sum
, Data.Algebraic.Function
-- other-modules:
other-extensions: AutoDeriveTypeable
, TypeFamilies
, TypeOperators
, MultiParamTypeClasses
, FlexibleInstances
, FlexibleContexts
, ScopedTypeVariables
, DataKinds
, PolyKinds
, UndecidableInstances
, RankNTypes
, GADTs
build-depends: base >=4.8 && <4.9
, semigroups
-- hs-source-dirs:
default-language: Haskell2010