-
Notifications
You must be signed in to change notification settings - Fork 0
/
chorale.cabal
52 lines (49 loc) · 1.42 KB
/
chorale.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
name: chorale
version: 0.1.8
homepage: https://github.com/mocnik-science/chorale
bug-reports: https://github.com/mocnik-science/chorale/issues
synopsis: A module containing basic functions that the prelude does not offer
description:
Chorale is a Haskell module that contains basic functions that the prelude
does not offer. The prelude is traditionally followed by a chorale ...
license: MIT
license-file: LICENSE
author: Franz-Benjamin Mocnik <[email protected]>
maintainer: Franz-Benjamin Mocnik <[email protected]>
copyright: 2013-2016 Franz-Benjamin Mocnik
category: Prelude
cabal-version: >= 1.20
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: git://github.com/mocnik-science/chorale.git
library
exposed-modules:
Chorale.Common
hs-source-dirs: src/
default-language: Haskell2010
ghc-options:
-Wall
-O2
build-depends:
base >= 4.6 && < 5,
containers >= 0.5,
safe >= 0.3.4
test-suite test
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: tests/
default-language: Haskell2010
build-depends:
base >= 4.6 && < 5,
chorale >= 0.1.5,
containers >= 0.5,
HUnit >= 1.2.5.2,
ieee754 >= 0.7.3,
QuickCheck >= 2.6,
safe >= 0.3.4,
test-framework >= 0.8.0.3,
test-framework-hunit >= 0.3.0.1,
test-framework-quickcheck2 >= 0.3.0.2