packages feed

sunlight-0.4.0.0: sunlight.cabal

-- Initial sunlight.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                sunlight
version:             0.4.0.0
synopsis:            Test Cabalized package against multiple dependency versions

description:         
  sunlight checks your Cabalized package and ensures that it actually
  builds and passes its tests, even against mulitple dependency
  versions specified in your Cabal file.  For example, your Cabal file
  might say that your package builds against base-4.5.1.0
  and base-4.6.0.1.  With
  sunlight you can automatically verify that this is actually the case.
  .
  For more information, please see
  .
  <http://www.github.com/massysett/sunlight>

homepage:            http://www.github.com/massysett/sunlight
license:             BSD3
license-file:        LICENSE
author:              Omari Norman
maintainer:          omari@smileystation.com
stability:           experimental
category:            Testing
build-type:          Simple
cabal-version:       >=1.10
extra-source-files: sunlight-test.hs, README.md
source-repository head
  type: git
  location: https://github.com/massysett/sunlight.git
  

library
  exposed-modules:
      Test.Sunlight

  other-modules:
      Test.Sunlight.Shell

  build-depends:
      base >=4.5.1.0 && < 5
    , directory >= 1.1.0.2
    , bytestring >= 0.9.2.1
    , Cabal >= 1.14.0
    , process >= 1.1.0.1
    , tuple >= 0.2.0.1
    , time >= 1.4
    , old-locale >= 1.0.0.4
    , random >= 1.0.0.0

  hs-source-dirs:      lib
  ghc-options: -Wall
  default-language:    Haskell2010