summaryrefslogtreecommitdiff
path: root/openscad/OpenSCAD.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'openscad/OpenSCAD.cabal')
-rw-r--r--openscad/OpenSCAD.cabal57
1 files changed, 57 insertions, 0 deletions
diff --git a/openscad/OpenSCAD.cabal b/openscad/OpenSCAD.cabal
new file mode 100644
index 0000000..ebfd955
--- /dev/null
+++ b/openscad/OpenSCAD.cabal
@@ -0,0 +1,57 @@
1-- Initial OpenSCAD.cabal generated by cabal init. For further
2-- documentation, see http://haskell.org/cabal/users-guide/
3
4name: OpenSCAD
5version: 0.3.0.2
6synopsis: ADT wrapper and renderer for OpenSCAD models.
7description: An algebraic data type for describing OpenSCAD models,
8 functions to make building such models easier, and
9 functions for rendering an ADT into an OpenSCAD program.
10homepage: https://chiselapp.com/user/mwm/repository/OpenSCAD/
11license: BSD3
12license-file: LICENSE
13author: Mike Meyer
14maintainer: mwm@mired.org
15-- copyright:
16category: Graphics
17build-type: Simple
18extra-source-files: README.md
19cabal-version: >=1.10
20
21library
22 exposed-modules: Graphics.OpenSCAD, Graphics.OpenSCAD.Unicode
23 -- other-modules:
24 other-extensions: UnicodeSyntax
25 build-depends: base > 4.5 && < 5.0,
26 colour >=2.3 && < 2.4,
27 filepath >=1.3 && < 1.5,
28 semigroups >= 0.15 && < 1.0,
29 containers >= 0.5
30 -- hs-source-dirs:
31 default-language: Haskell2010
32
33Test-Suite Units
34 type: exitcode-stdio-1.0
35 main-is: UnitTest.hs
36 build-depends: base > 4.5 && < 5.0,
37 colour >=2.3,
38 filepath >=1.3,
39 HUnit >=1.2,
40 Cabal >= 1.18,
41 tasty-hunit >= 0.9,
42 tasty >=0.8,
43 deepseq >= 1.3,
44 testpack >= 2.1.2.1,
45 containers >= 0.5.5.1,
46 semigroups >= 0.15 && < 1.0,
47 containers >= 0.5
48 default-language: Haskell2010
49
50source-repository head
51 type: fossil
52 location: https://chiselapp.com/user/mwm/repository/OpenSCAD/
53
54source-repository this
55 type: fossil
56 location: https://chiselapp.com/user/mwm/repository/OpenSCAD/
57 tag: 0.3.0.2