-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwebsite.cabal
More file actions
70 lines (61 loc) · 2.23 KB
/
website.cabal
File metadata and controls
70 lines (61 loc) · 2.23 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
cabal-version: 3.8
name: vrom911-website
version: 0.0.0.0
synopsis: My personal website and blog
description: My personal website and blog
homepage: https://github.com/vrom911/vrom911.github.io
bug-reports: https://github.com/vrom911/vrom911.github.io/issues
license: MPL-2.0
license-file: LICENSE
author: Veronika Romashkina
maintainer: vrom911@gmail.com
copyright: 2019-2025 vrom911
category: Website
build-type: Simple
stability: stable
extra-doc-files: README.md
, CHANGELOG.md
tested-with: GHC == 9.6.7
source-repository head
type: git
location: git@github.com:vrom911/vrom911.github.io.git
library
hs-source-dirs: src
exposed-modules: Website
Website.Blog
Website.Context
Website.Experience
Website.Hobbies
Website.Nav
Website.Project
Website.Social
build-depends: base >= 4.18
, filepath >= 1.5
, hakyll >= 4.13
, hakyll-shortcut-links ^>= 0.1.1.0
, pandoc >= 2.9
-- , relude ^>= 0.5.0
, text
, time
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
default-extensions: DeriveGeneric
GeneralizedNewtypeDeriving
InstanceSigs
LambdaCase
OverloadedStrings
RecordWildCards
ScopedTypeVariables
TypeApplications
default-language: Haskell2010
executable site
main-is: site.hs
build-depends: base
, vrom911-website
ghc-options: -Wall -threaded
default-language: Haskell2010