packages feed

leveldb-haskell-0.1.1: leveldb-haskell.cabal

name:                leveldb-haskell
version:             0.1.1
synopsis:            Haskell bindings to LevelDB
homepage:            http://github.com/kim/leveldb-haskell
bug-reports:         http://github.com/kim/leveldb-haskell/issues
license:             BSD3
license-file:        LICENSE
author:              Kim Altintop <kim.altintop@gmail.com>
                   , Austin Seipp <mad.one@gmail.com>
                   , Michael Lazarev <lazarev.michael@gmail.com>
                   , Will Moss <wbmoss@gmail.com>
maintainer:          kim.altintop@gmail.com
copyright:           Copyright (c) 2012 The leveldb-haskell Authors
category:            Database, FFI
stability:           Experimental
build-type:          Simple
cabal-version:       >=1.10
tested-with:         GHC == 7.2.2, GHC == 7.4.1
description:
    From <http://leveldb.googlecode.com>:
    .
    LevelDB is a fast key-value storage library written at Google that provides
    an ordered mapping from string keys to string values.
    .
    .
    This library provides a Haskell language binding to LeveldDB. It is in very
    early stage and has seen very limited testing.
    .
    Note: as of v1.3, LevelDB can be built as a shared library. Thus, as of
    v0.1.0 of this library, LevelDB is no longer bundled and must be installed
    on the target system (version 1.3 or greater).

extra-source-files:  Readme.md, examples/*.hs

source-repository head
  type:     git
  location: git://github.com/kim/leveldb-haskell.git

library
  exposed-modules:  Database.LevelDB
  other-modules:    Database.LevelDB.Base

  default-language: Haskell2010
  default-extensions:
                    CPP
                  , ForeignFunctionInterface
                  , EmptyDataDecls
                  , RecordWildCards

  build-depends:    base >= 3 && < 5
                  , bytestring
                  , filepath
                  , transformers
                  , resourcet > 0.3.2
                  , data-default

  ghc-options:      -Wall -O2 -rtsopts
                    -funbox-strict-fields
  ghc-prof-options: -prof -auto-all

  hs-source-dirs:   src

  extra-libraries:  leveldb