-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathenvy.cabal
51 lines (47 loc) · 1.69 KB
/
envy.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
name: envy
version: 2.1.4.0
synopsis: An environmentally friendly way to deal with environment variables
license: BSD3
license-file: LICENSE
author: David Johnson, Tim Adams, Eric Mertens, Nicolas Rolland
maintainer: [email protected]
copyright: David Johnson (c) 2015-2025
category: System
build-type: Simple
cabal-version: >=1.10
description:
For package use information see the <https://github.com/dmjio/envy/blob/master/README.md README.md>
extra-source-files:
README.md
examples/Test.hs
library
exposed-modules: System.Envy
ghc-options: -Wall
hs-source-dirs: src
build-depends: base >= 4.11 && < 5
, bytestring >= 0.10 && < 0.13
, containers >= 0.5 && < 0.8
, mtl == 2.2.* || == 2.3.*
, text == 1.2.* || >= 2.0 && <2.2
, time >= 1.5 && < 2.0
, transformers >= 0.4 && < 0.7
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: tests
main-is: Main.hs
build-depends: base
, bytestring
, envy
, hspec
, mtl
, quickcheck-instances
, QuickCheck
, text
, time
, transformers
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/dmjio/envy