diff options
author | Moritz Angermann <moritz.angermann@gmail.com> | 2017-11-15 11:41:34 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-11-15 14:18:30 -0500 |
commit | 3bed4aa703c41ccbd310496420fbb71afdfd99e7 (patch) | |
tree | 84ee6b251c7e39bc73ea2f205344ed400f424387 /utils/unlit | |
parent | d0a641a33d1f3c722813b95ac81ca207071cbf83 (diff) | |
download | haskell-3bed4aa703c41ccbd310496420fbb71afdfd99e7.tar.gz |
Cabalify all the things
Adding cabal files to `unlit`, `touchy` and `hp2ps`, allows us to treat
them uniformally across the build system. In particular Hadrian will use
these.
Reviewers: bgamari
Reviewed By: bgamari
Subscribers: rwbarton, thomie
Differential Revision: https://phabricator.haskell.org/D4192
Diffstat (limited to 'utils/unlit')
-rw-r--r-- | utils/unlit/unlit.cabal | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/utils/unlit/unlit.cabal b/utils/unlit/unlit.cabal new file mode 100644 index 0000000000..e15a0754f6 --- /dev/null +++ b/utils/unlit/unlit.cabal @@ -0,0 +1,16 @@ +cabal-version: >=2.1 +Name: unlit +Version: 0.1 +Copyright: XXX +License: BSD3 +Author: XXX +Maintainer: XXX +Synopsis: Literate program filter +Description: XXX +Category: Development +build-type: Simple + +Executable unlit + Default-Language: Haskell2010 + Main-Is: unlit.c + C-Sources: unlit.c |