packages feed

cblrepo-0.2.0: src/PkgDB.hs-boot

module PkgDB where

import qualified Distribution.Package as P
import qualified Distribution.Version as V

type CblPkg = (String, (V.Version, [P.Dependency], Int))
type CblDB = [CblPkg]

lookupPkg :: CblDB -> String -> Maybe CblPkg