packages feed

copilot-sbv-2.2.0: copilot-sbv.cabal

cabal-version             : >= 1.10
name                      : copilot-sbv
version                   : 2.2.0
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/Copilot-Language/copilot-discussion>.
  .
  Examples are available at
  <https://github.com/Copilot-Language/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:   http://github.com/leepike/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 >= 5.0
                          , base >= 4.0 && < 5
                          , containers >= 0.4
                          , copilot-core == 2.2.0
                          , directory >= 1.2.1
                          , pretty >= 1
                          , filepath >= 1.1

  exposed-modules         : Copilot.Compile.SBV
                          , Copilot.Compile.SBV.ACSLexpr
                          , Copilot.Compile.SBV.ACSLproof
                          , 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.Transform
                          , Copilot.Compile.SBV.Makefile