packages feed

copilot-libraries-0.6: copilot-libraries.cabal

cabal-version:       >=1.10
name:                copilot-libraries
version:             0.6
synopsis:            A Haskell-embedded DSL for monitoring hard real-time
                     distributed systems.
description:         
  Libraries for the Copilot language.
  . 
  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
author:              Lee Pike, Robin Morisset, Alwyn Goodloe, Sebastian Niller,
                     Nis Nordby Wegmann
maintainer:          niswegmann@gmail.com
stability:           Experimental
category:            Language, Embedded
build-type:          Simple

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

library
  default-language: Haskell2010

  hs-source-dirs: src

  build-depends:
    array,
    base >= 4.0 && < 5,
    containers,
    copilot-language,
    parsec >= 2.0,
    mtl >= 2.0

  exposed-modules:
      Copilot.Library.Libraries
    , Copilot.Library.Clocks
    , Copilot.Library.LTL
    , Copilot.Library.PTLTL
    , Copilot.Library.Statistics
    , Copilot.Library.RegExp
    , Copilot.Library.Utils
    , Copilot.Library.Voting
    , Copilot.Library.Stacks

  ghc-options:
    -fwarn-tabs
    -auto-all
    -caf-all
    -Wall