packages feed

copilot-sbv-0.5: copilot-sbv.cabal

cabal-version             : >= 1.10
name                      : copilot-sbv
version                   : 0.5
synopsis                  : A compiler for CoPilot targeting SBV.
description               : 
  The Copilot back-end targeting SBV <http://hackage.haskell.org/package/sbv>.
  . 
  Copilot is a stream (i.e., infinite lists) domain-specific language (DSL) in
  Haskell that compiles into embedded C.  Copilot contains an interpreter,
  multiple back-end compilers, and other verification tools.  A tutorial, bug
  reports, and todos are available at
  <https://github.com/niswegmann/copilot-discussion>.  
  .  
  Examples are available at
  <https://github.com/leepike/Copilot/tree/master/Examples>.

license                   : BSD3
license-file              : LICENSE
maintainer                : leepike@galois.com
stability                 : Experimental
category                  : Language, Embedded
build-type                : Simple
extra-source-files        : README.md

author                    : Lee Pike
                          , Robin Morisset
                          , Alwyn Goodloe
                          , Sebastian Niller
                          , Nis Nordby Wegmann

source-repository head
    type:       git
    location:   git://github.com/niswegmann/copilot-sbv.git

library
  default-language        : Haskell2010
  hs-source-dirs          : src
  ghc-options             : -Wall -fwarn-tabs
  ghc-prof-options        : -auto-all -caf-all

  build-depends           : sbv >= 1.0
                          , base >= 4.3 && < 5
                          , containers >= 0.4
                          , copilot-core
                          , pretty >= 1                         
                          , filepath >= 1.1

  exposed-modules         : Copilot.Compile.SBV
                          , Copilot.Compile.SBV.Code
                          , Copilot.Compile.SBV.Common
                          , Copilot.Compile.SBV.Copilot2SBV
                          , Copilot.Compile.SBV.MetaTable
                          , Copilot.Compile.SBV.Params
                          , Copilot.Compile.SBV.Queue
                          , Copilot.Compile.SBV.Witness
                          , Copilot.Compile.SBV.Driver
                          , Copilot.Compile.SBV.Makefile