This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.cabal
52 lines (50 loc) · 1.66 KB
/
notes.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
49
50
51
52
name: notes
version: 0.1.0.0
synopsis: A note-taking program
description:
A note-taking program
homepage: http://github.com/aelve/notes
bug-reports: http://github.com/aelve/notes/issues
license: BSD3
license-file: LICENSE
author: Artyom
maintainer: [email protected]
-- copyright:
category: Utility
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/aelve/notes.git
executable notes
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base
, base-prelude
, gi-glib
, gi-gtk
, gi-webkit2
, gtk3
, haskell-gi-base
, neat-interpolation < 0.4
, random
, text-all
, transformers
, webkitgtk3
ghc-options: -Wall -fno-warn-unused-do-bind
hs-source-dirs: src
default-language: Haskell2010
default-extensions: MultiWayIf
, ViewPatterns
, RecordWildCards
, TupleSections
, LambdaCase
, RankNTypes
, MultiParamTypeClasses
, FunctionalDependencies
, TemplateHaskell
, DeriveFunctor
, DeriveTraversable
, DeriveGeneric