-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdata-default.cabal
31 lines (28 loc) · 1016 Bytes
/
data-default.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
cabal-version: 3.0
name: data-default
version: 0.8.0.0
category: Data
synopsis: A class for types with a default value
description:
This module defines a class for types with a default value. Instances are
provided for @()@, 'Data.Set.Set', 'Data.Map.Map', 'Int', 'Integer',
'Float', 'Double', and many others.
build-type: Simple
license: BSD-3-Clause
license-file: LICENSE
copyright: (c) 2013 Lukas Mai
author: Lukas Mai
maintainer: <[email protected]>
source-repository head
type: git
location: https://github.com/mauke/data-default
library
build-depends: base >=4.8 && <5, containers >=0.1 && <0.8
exposed-modules: Data.Default, Data.Default.Internal
default-language: Haskell98
test-suite test
type: exitcode-stdio-1.0
main-is: basics.hs
build-depends: base, containers, data-default, mtl
hs-source-dirs: t
default-language: Haskell98