From 1336dba0a2fa2971c494d48cdd702f30c1cca527 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 4 Sep 2020 12:22:07 +0100 Subject: Add initial files --- alluvial.cabal | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 alluvial.cabal (limited to 'alluvial.cabal') diff --git a/alluvial.cabal b/alluvial.cabal new file mode 100644 index 0000000..f3d492e --- /dev/null +++ b/alluvial.cabal @@ -0,0 +1,23 @@ +cabal-version: >=1.10 + +name: alluvial +version: 0.1.0.0 +synopsis: Generates alluvial diagrams from types. +description: Library to generate general alluvial diagrams from types, using latex as the backend. +bug-reports: https://github.com/ymherklotz/alluvial-hs/issues +license: GPL-3 +license-file: LICENSE +author: Yann Herklotz +maintainer: git@yannherklotz.com +copyright: (c) 2020 Yann Herklotz +-- category: +build-type: Simple +extra-source-files: CHANGELOG.md + +executable alluvial-hs + main-is: Main.hs + -- other-modules: + -- other-extensions: + build-depends: base >=4.13 && <4.14 + hs-source-dirs: src + default-language: Haskell2010 -- cgit