Cabal revisions of void-0.6
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-name: void-category: Data Structures-version: 0.6-license: BSD3-cabal-version: >= 1.6-license-file: LICENSE-author: Edward A. Kmett-maintainer: Edward A. Kmett <ekmett@gmail.com>-stability: portable-homepage: http://github.com/ekmett/void-bug-reports: http://github.com/ekmett/void/issues-copyright: Copyright (C) 2008-2013 Edward A. Kmett-synopsis: A Haskell 98 logically uninhabited data type-description: A Haskell 98 logically uninhabited data type, used to indicate that a given term should not exist.-build-type: Simple--extra-source-files:- .ghci- .gitignore- .travis.yml- .vim.custom- CHANGELOG.markdown- README.markdown--source-repository head- type: git- location: git://github.com/ekmett/void.git--flag safe- manual: True- default: False--library- hs-source-dirs: src- exposed-modules:- Data.Void- Data.Void.Unsafe-- build-depends:- base >= 3 && < 10,- hashable >= 1.1,- semigroups >= 0.8.2-- ghc-options: -Wall-- if flag(safe)- cpp-options: -DSAFE-- if impl(ghc)- other-extensions: DeriveDataTypeable- cpp-options: -DLANGUAGE_DeriveDataTypeable-- if impl(ghc >= 7.2)- other-extensions: StandaloneDeriving- -- other-extensions: DeriveGeneric isn't known to cabal yet- cpp-options: -DLANGUAGE_DeriveGeneric- build-depends: ghc-prim+name: void +category: Data Structures +version: 0.6 +x-revision: 1 +license: BSD3 +cabal-version: >= 1.6 +license-file: LICENSE +author: Edward A. Kmett +maintainer: Edward A. Kmett <ekmett@gmail.com> +stability: portable +homepage: http://github.com/ekmett/void +bug-reports: http://github.com/ekmett/void/issues +copyright: Copyright (C) 2008-2013 Edward A. Kmett +synopsis: A Haskell 98 logically uninhabited data type +description: A Haskell 98 logically uninhabited data type, used to indicate that a given term should not exist. +build-type: Simple + +extra-source-files: + .ghci + .gitignore + .travis.yml + .vim.custom + CHANGELOG.markdown + README.markdown + +source-repository head + type: git + location: git://github.com/ekmett/void.git + +flag safe + manual: True + default: False + +library + hs-source-dirs: src + exposed-modules: + Data.Void + Data.Void.Unsafe + + build-depends: + base >= 3 && < 4.8, + hashable >= 1.1, + semigroups >= 0.8.2 + + ghc-options: -Wall + + if flag(safe) + cpp-options: -DSAFE + + if impl(ghc) + other-extensions: DeriveDataTypeable + cpp-options: -DLANGUAGE_DeriveDataTypeable + + if impl(ghc >= 7.2) + other-extensions: StandaloneDeriving + -- other-extensions: DeriveGeneric isn't known to cabal yet + cpp-options: -DLANGUAGE_DeriveGeneric + build-depends: ghc-prim
revision 2
name: void category: Data Structures version: 0.6 -x-revision: 1 +x-revision: 2 license: BSD3 cabal-version: >= 1.6 license-file: LICENSE build-depends: base >= 3 && < 4.8, hashable >= 1.1, - semigroups >= 0.8.2 + semigroups >= 0.8.2 && < 0.17 ghc-options: -Wall