-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathStateVar.cabal
67 lines (62 loc) · 1.76 KB
/
StateVar.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
cabal-version: 3.4
name: StateVar
version: 1.2.2
license: BSD-3-Clause
license-file: LICENSE
copyright:
Copyright (C) 2014-2015 Edward A. Kmett, 2009-2021 Sven Panne
category: Data
author: Sven Panne and Edward Kmett
maintainer: Sven Panne <[email protected]>
homepage: https://github.com/haskell-opengl/StateVar
bug-reports: https://github.com/haskell-opengl/StateVar/issues
synopsis: State variables
description:
This package contains state variables, which are references in the IO monad,
like IORefs or parts of the OpenGL state.
build-type: Simple
tested-with:
GHC == 8.0.2
GHC == 8.2.2
GHC == 8.4.4
GHC == 8.6.5
GHC == 8.8.4
GHC == 8.10.7
GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.8
GHC == 9.6.6
GHC == 9.8.2
GHC == 9.10.1
extra-doc-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/haskell-opengl/StateVar.git
library
default-language: Haskell2010
hs-source-dirs: src
build-depends:
, base >=4 && <5
, stm >=2.3.0.1 && <2.6
, transformers >=0.3 && <0.7
exposed-modules: Data.StateVar
default-extensions: TypeOperators
ghc-options: -Wall
other-extensions:
CPP
DeriveDataTypeable
MultiParamTypeClasses
FunctionalDependencies
FlexibleInstances
TypeFamilies
if impl ( ghc > 8 )
ghc-options: -Wcompat
if impl ( ghc >= 7.4 )
-- other-extensions: DefaultSignatures
cpp-options: -DUSE_DEFAULT_SIGNATURES=1
if impl ( ghc >= 9.0 )
-- these flags may abort compilation with GHC-8.10
-- https://gitlab.haskell.org/ghc/ghc/-/merge_requests/3295
ghc-options: -Winferred-safe-imports -Wmissing-safe-haskell-mode