packages feed

NineP-0.0.0: NineP.cabal

name:		NineP
version:	0.0.0
license:	BSD3
license-file:	LICENSE
author:		Tim Newsham <newsham@lava.net>, Dave Leimbach <leimy2k@gmail.com>
maintainer:	Dave Leimbach <leimy2k@gmail.com>
stability:	Experimental
homepage:	http://9ph.googlecode.com
synopsis:	9P2000 in pure Haskell
category:	Data
description:	Pure Haskell implementation of the 9P2000 protocol from the 
		Plan 9 and Inferno operating systems.  Many implementations of
		9P2000 exist including the Linux kernel v9fs module, wmii 
		(X window manager).  More information on 9P and implementations
		may be found at http:\/\/9p.cat-v.org
build-type:	Simple
cabal-version:	>= 1.8.0.2
tested-with:	GHC == 6.12.1

flag bytestring-in-base

library
    if flag(bytestring-in-base)
      -- bytestring was in base-2.0 and 2.1.1
      build-depends: base >= 2.0 && < 2.2, binary >= 0.5.0.2
    else
      -- inbase 1.0 and 3.0 bytestring is a separate package
      build-depends: base < 2.0 || >= 3, bytestring >= 0.9, binary >= 0.5.0.2

    hs-source-dirs:   src
    exposed-modules:  Data.NineP      

    ghc-options:      -O2 -Wall