-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplaceholders.cabal
36 lines (30 loc) · 1.31 KB
/
placeholders.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
36
Name: placeholders
Version: 0.1
Synopsis: Placeholders for use while developing Haskell code
Description: While working on some Haskell code, it is often useful to
work incrementally by inserting @undefined@ as a
placeholder for missing code.
.
This library provides placeholders that produce better
messages when evaluated at run-time and also generate
compile-time warnings so that they do not get forgotten
so easily.
For details, see <http://github.com/ahammar/placeholders>
Homepage: http://github.com/ahammar/placeholders
License: BSD3
License-file: LICENSE
Author: Andreas Hammar
Maintainer: Andreas Hammar <[email protected]>
Copyright: (c) 2011 Andreas Hammar
Category: Development
Build-type: Simple
Extra-source-files: README.markdown
Cabal-version: >=1.6
Source-repository head
Type: git
Location: git://github.com/ahammar/placeholders.git
Library
Exposed-modules: Development.Placeholders
Build-depends: base >= 4 && < 5,
template-haskell
Hs-source-dirs: src