packages feed

filecache-0.3.0: filecache.cabal

name:                filecache
version:             0.3.0
synopsis:            A cache system associating values to files.
description:         A cache system, that works by associating computation results with file names. When the files are modified, the cache entries are discarded.
homepage:            http://lpuppet.banquise.net/
license:             BSD3
license-file:        LICENSE
author:              Simon Marechal
maintainer:          bartavelle@gmail.com
copyright:           Simon Marechal
category:            Data
build-type:          Simple
cabal-version:       >=1.10
bug-reports:         https://github.com/bartavelle/filecache/issues

source-repository head
  type: git
  location: git://github.com/bartavelle/filecache.git

test-suite simpletest
    hs-source-dirs: tests
    type:           exitcode-stdio-1.0
    ghc-options:    -Wall -rtsopts -threaded -with-rtsopts=-N
    build-depends:  base, filecache, temporary, directory, containers, stm, hspec, filepath
    main-is:        simpletest.hs
    default-language:    Haskell2010

library
  exposed-modules:     Data.FileCache Data.FileCache.Internal
  ghc-options:         -Wall
  default-language:    Haskell2010
  hs-source-dirs:      src
  -- other-modules:
  build-depends:       base               >= 4.6   && < 5
                     , containers         == 0.5.*
                     , directory          >= 1.2   && < 1.4
                     , fsnotify           == 0.2.*
                     , strict-base-types  >= 0.2.2
                     , mtl                >= 2.1   && < 2.3
                     , exceptions         == 0.8.*
                     , filepath           == 1.4.*
                     , time               >= 1.5  && < 2
                     , stm