NonEmptyList-0.0.2: NonEmptyList.cabal
Name: NonEmptyList
Version: 0.0.2
License: BSD3
License-File: LICENSE
Synopsis: A list with a length of at least one.
Description: A list with a length of at least one and type-safe head/tail operations.
Homepage: http://code.google.com/p/nonempty/
Category: Data
Author: Tony Morris, Oliver Taylor
Maintainer: code@tmorris.net
Copyright: 2010 Tony Morris, Oliver Taylor
build-type: Simple
cabal-version: >= 1.2
Flag small_base
Description: Choose the new, split-up base package.
Library
if flag(small_base)
Build-Depends: base < 5 && >= 3, QuickCheck >= 2
else
Build-Depends: base < 5 && >= 3, QuickCheck >= 2
GHC-Options: -Wall
Exposed-Modules: Data.List.NonEmpty
Data.List.ZipNonEmpty