-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfingerd.cabal
executable file
·48 lines (44 loc) · 1.13 KB
/
fingerd.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
37
38
39
40
41
42
43
44
45
46
47
48
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: a0575d5e6353ca4c9a369ece49a7a162e060f1161891dfc665579b1dc1689168
name: fingerd
version: 0.1.0.0
description: Daemon operates over TCP sockets
category: CLI
homepage: https://github.com/mnhthng-thms/Haskell-Book-Final-fingerd
author: MinhTu Thomas Hoang
maintainer: MinhTu Thomas Hoang
copyright: 2021 MinhTu Thomas Hoang
license: BSD3
build-type: Simple
extra-source-files:
README.md
executable debug
main-is: Debug.hs
hs-source-dirs:
src
ghc-options: -Wall -fhide-source-paths -freverse-errors -Wall
build-depends:
base >=4.7 && <5
, bytestring
, network
, raw-strings-qq
, sqlite-simple
, text
default-language: Haskell2010
executable fingerd
main-is: Main.hs
hs-source-dirs:
src
ghc-options: -Wall -fhide-source-paths -freverse-errors
build-depends:
base >=4.7 && <5
, bytestring
, network
, raw-strings-qq
, sqlite-simple
, text
default-language: Haskell2010