blob: ebc537c46c0b6234fede3170311f0ea37e09d8a1 (
plain)
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
|
author: tv
build-type: Simple
cabal-version: >= 1.8
license: MIT
name: blessings
version: 2.2.0
library
build-depends:
base,
text
exposed-modules:
Blessings,
Blessings.Internal,
Blessings.String,
Blessings.Text
ghc-options: -O2 -Wall
hs-source-dirs: src
test-suite test-blessings
build-depends:
base,
blessings,
hspec,
QuickCheck
ghc-options: -Wall
hs-source-dirs: test
main-is: Spec.hs
type: exitcode-stdio-1.0
source-repository head
location: https://cgit.krebsco.de/blessings
type: git
|