1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
cabal-version: >=1.10
name: copilot-prettyprinter
version: 4.5
synopsis: A prettyprinter of Copilot Specifications.
description:
A prettyprinter of Copilot specifications.
.
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, examples, and other information are available at
<https://copilot-language.github.io>.
author: Frank Dedden, Lee Pike, Robin Morisset, Alwyn Goodloe,
Sebastian Niller, Nis Nordbyop Wegmann, Ivan Perez
license: BSD3
license-file: LICENSE
maintainer: Ivan Perez <ivan.perezdominguez@nasa.gov>
homepage: https://copilot-language.github.io
bug-reports: https://github.com/Copilot-Language/copilot/issues
stability: Experimental
category: Language, Embedded
build-type: Simple
extra-source-files: README.md, CHANGELOG
x-curation: uncurated
source-repository head
type: git
location: https://github.com/Copilot-Language/copilot.git
subdir: copilot-prettyprinter
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options:
-Wall
-fno-warn-orphans
build-depends:
base >= 4.9 && < 5,
pretty >= 1.0 && < 1.2,
copilot-core >= 4.5 && < 4.6
exposed-modules:
Copilot.PrettyPrint
other-modules:
Copilot.PrettyPrint.Error
Copilot.PrettyPrint.Type
|