-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlanguage-c99-util.cabal
35 lines (32 loc) · 1.2 KB
/
language-c99-util.cabal
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
-- Initial language-c99-util.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: language-c99-util
version: 0.2.0
synopsis: Utilities for language-c99.
description:
This library contains a number of utility functions and wrappers for the
'language-c99' package. For an actual high-level approach to writing C99
programs, see 'language-c99-simple'.
license: MIT
license-file: LICENSE
author: Frank Dedden
maintainer: Frank Dedden <[email protected]>
-- copyright:
category: Language
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com:fdedden/language-c99-util.git
library
exposed-modules: Language.C99.Util
other-modules: Language.C99.Util.Wrap,
Language.C99.Util.IsList,
Language.C99.Util.Expr
-- other-extensions:
build-depends: base >=4.9 && <5,
language-c99 >= 0.2 && < 0.3,
ieee754 >= 0.8.0 && < 0.9
hs-source-dirs: src
default-language: Haskell2010