aboutsummaryrefslogtreecommitdiff
path: root/servant/servant.cabal
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2015-09-14 22:07:20 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2015-09-14 22:07:20 +0000
commit3402bbc71d4492caff4098b9606a58ab18ab67c2 (patch)
tree4fe98ac24455da8e07188e4aa803abe05b79af14 /servant/servant.cabal
downloadthermoprint-3402bbc71d4492caff4098b9606a58ab18ab67c2.tar
thermoprint-3402bbc71d4492caff4098b9606a58ab18ab67c2.tar.gz
thermoprint-3402bbc71d4492caff4098b9606a58ab18ab67c2.tar.bz2
thermoprint-3402bbc71d4492caff4098b9606a58ab18ab67c2.tar.xz
thermoprint-3402bbc71d4492caff4098b9606a58ab18ab67c2.zip
First shot at basic structure
The planned webapp is missing for now. `nix-build -A servant` fails because thermoprint does not seem to be registered with ghc (see `echo 'import Thermoprint' | nix-shell -p 'ghci'`)
Diffstat (limited to 'servant/servant.cabal')
-rw-r--r--servant/servant.cabal26
1 files changed, 26 insertions, 0 deletions
diff --git a/servant/servant.cabal b/servant/servant.cabal
new file mode 100644
index 0000000..b509dbc
--- /dev/null
+++ b/servant/servant.cabal
@@ -0,0 +1,26 @@
1-- Initial thermoprint.cabal generated by cabal init. For further
2-- documentation, see http://haskell.org/cabal/users-guide/
3
4name: thermoprint-servant
5version: 0.0.0
6synopsis: Server for interfacing to cheap thermoprinters
7-- description:
8homepage: git://git.yggdrasil.li/thermoprint
9license: PublicDomain
10license-file: LICENSE
11author: Gregor Kleen
12maintainer: aethoago@141.li
13-- copyright:
14category: Web
15build-type: Simple
16-- extra-source-files:
17cabal-version: >=1.10
18
19executable thermoprint
20 main-is: Main.hs
21 -- other-modules:
22 -- other-extensions:
23 build-depends: base >=4.8 && <4.9
24 , thermoprint
25 hs-source-dirs: src
26 default-language: Haskell2010 \ No newline at end of file