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
|
Name: dotgen
Version: 0.4.3
Synopsis: A simple interface for building .dot graph files.
Description: This package provides a simple interface for building .dot graph files,
for input into the dot and graphviz tools.
It includes a monadic interface for building graphs.
homepage: https://github.com/ku-fpg/dotgen
bug-reports: https://github.com/ku-fpg/dotgen/issues
Category: Text
License: BSD3
License-file: LICENSE
Author: Andy Gill
Maintainer: Andy Gill <andygill@ku.edu>
Stability: alpha
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
tested-with: GHC == 7.0.4
, GHC == 7.2.2
, GHC == 7.4.2
, GHC == 7.6.3
, GHC == 7.8.4
, GHC == 7.10.3
, GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.3
, GHC == 8.10.1
Cabal-Version: >= 1.10
source-repository head
type: git
location: https://github.com/ku-fpg/dotgen
Flag devel
Description: Enable full development tree
Default: False
Library
Build-Depends: base >= 3 && < 5,
containers
Exposed-Modules: Text.Dot
default-language: Haskell2010
ghc-options: -Wall
-- Trivial (build) test framework
Executable dotgen-test
if flag(devel)
buildable: True
else
buildable: False
build-depends: base >= 3 && < 5,
dotgen
hs-source-dirs: test
Main-is: DotTest.hs
default-language: Haskell2010
ghc-options: -Wall
|