Files
Hakysidian/hakysidian.cabal

52 lines
1.5 KiB
Plaintext
Raw Normal View History

cabal-version: 2.4
name: hakysidian
2026-03-20 13:04:46 +08:00
version: 0.1.0.0
build-type: Simple
data-files:
bib_style.csl
favicon.ico
css/*.css
fonts/*.otf
fonts/*.ttf
fonts/*.woff2
templates/*.html
2026-03-20 13:04:46 +08:00
executable hakysidian
2026-03-20 13:04:46 +08:00
hs-source-dirs: src
main-is: site.hs
other-modules: ChaoDoc, SideNoteHTML, Pangu, Paths_hakysidian
autogen-modules: Paths_hakysidian
2026-03-20 13:04:46 +08:00
build-depends: base >= 4.18
, hakyll >= 4.15
, mtl >= 2.2.2
, pandoc
, pandoc-types >= 1.22.2.1
, pandoc-sidenote
, tagsoup
, text
, containers
-- , process
-- , regex-compat
, array
, directory
2026-03-20 13:04:46 +08:00
, filepath
2026-03-24 21:05:23 +08:00
, process
, time
, wai-app-static
, warp
2026-03-20 13:04:46 +08:00
-- , ghc-syntax-highlighter
-- , blaze-html >= 0.9
, megaparsec
, replace-megaparsec
ghc-options: -Weverything
-Wno-implicit-prelude
-Wno-missing-import-lists
-Wno-unused-packages
-Wno-missing-safe-haskell-mode
-Wno-all-missed-specialisations
-Wno-unsafe
-Wno-prepositive-qualified-module
-O2 -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010