-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
59 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,73 @@ | ||
cabal-version: >= 1.10 | ||
name: StateVar | ||
version: 1.2.2 | ||
synopsis: State variables | ||
description: | ||
This package contains state variables, which are references in the IO monad, | ||
like IORefs or parts of the OpenGL state. | ||
homepage: https://github.com/haskell-opengl/StateVar | ||
bug-reports: https://github.com/haskell-opengl/StateVar/issues | ||
copyright: Copyright (C) 2014-2015 Edward A. Kmett, 2009-2021 Sven Panne | ||
license: BSD3 | ||
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 <svenpanne@gmail.com> | ||
category: Data | ||
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 == 7.0.4 | ||
GHC == 7.2.2 | ||
GHC == 7.4.2 | ||
GHC == 7.6.3 | ||
GHC == 7.8.4 | ||
GHC == 7.10.3 | ||
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.4 | ||
GHC == 9.8.1 | ||
cabal-version: >= 1.10 | ||
extra-source-files: | ||
README.md | ||
CHANGELOG.md | ||
GHC == 7.0.4 | ||
GHC == 7.2.2 | ||
GHC == 7.4.2 | ||
GHC == 7.6.3 | ||
GHC == 7.8.4 | ||
GHC == 7.10.3 | ||
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.4 | ||
GHC == 9.8.1 | ||
|
||
library | ||
exposed-modules: | ||
Data.StateVar | ||
source-repository head | ||
type: git | ||
location: https://github.com/haskell-opengl/StateVar.git | ||
|
||
build-depends: | ||
base >= 4 && < 5, | ||
stm >= 2.3.0.1 && < 2.6, | ||
transformers >= 0.3 && < 0.7 | ||
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 | ||
|
||
default-language: Haskell2010 | ||
default-extensions: | ||
TypeOperators | ||
other-extensions: | ||
CPP | ||
DeriveDataTypeable | ||
MultiParamTypeClasses | ||
FunctionalDependencies | ||
FlexibleInstances | ||
TypeFamilies | ||
if impl ( ghc > 8 ) | ||
ghc-options: -Wcompat | ||
|
||
hs-source-dirs: src | ||
ghc-options: -Wall | ||
if impl(ghc > 8) | ||
ghc-options: -Wcompat | ||
if impl(ghc>=7.4) | ||
-- other-extensions: DefaultSignatures | ||
cpp-options: -DUSE_DEFAULT_SIGNATURES=1 | ||
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 | ||
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 | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/haskell-opengl/StateVar.git | ||
extra-source-files: | ||
README.md | ||
CHANGELOG.md |