From a69ddb2f924fc32016872d37e35926336494f9d4 Mon Sep 17 00:00:00 2001 From: Pagwin Date: Fri, 28 Nov 2025 13:30:51 -0500 Subject: [PATCH] cabal check nits fixed --- psb.cabal | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/psb.cabal b/psb.cabal index 0d1e784..6c4f8a8 100644 --- a/psb.cabal +++ b/psb.cabal @@ -18,6 +18,9 @@ maintainer: dev@pagwin.xyz category: Web build-type: Simple +extra-doc-files: CHANGELOG.md +description: A Static site generator I've built for my purposes + common warnings ghc-options: -Wall @@ -26,10 +29,11 @@ test-suite test-markdown-parse hs-source-dirs: app type: exitcode-stdio-1.0 main-is: Tests/Markdown/Parse.hs - build-depends: base >=4.17.2.1, text >= 2.1.2, megaparsec >= 9.7.0, transformers >= 0.6.2, hedgehog >= 1.7, time + build-depends: base >=4.20 && < 4.21, text >= 2.1.2 && < 2.2, megaparsec >= 9.7.0 && < 9.8, transformers >= 0.6.2 && < 0.7, hedgehog >= 1.7 && < 1.8, time >= 1.15 && < 1.16 default-extensions: ApplicativeDo DataKinds NamedFieldPuns DerivingVia LambdaCase TypeApplications DeriveGeneric OverloadedRecordDot NamedFieldPuns DuplicateRecordFields DisambiguateRecordFields FlexibleInstances other-modules: IR Logger Markdown Utilities + default-language: Haskell2010 executable psb -- Import common warning flags. @@ -44,7 +48,7 @@ executable psb -- Other library packages from which modules are imported. -- https://hackage.haskell.org/package/texmath - build-depends: base >=4.17.2.1, mustache >=2.4.2, shake >= 0.19.8, deriving-aeson >= 0.2.9, aeson, text >= 2.1.2, time, unordered-containers, yaml, megaparsec >= 9.7.0, transformers >= 0.6.2 + build-depends: base >=4.20 && < 4.21, mustache >=2.4.2, shake >= 0.19.8, deriving-aeson >= 0.2.9, aeson, text >= 2.1.2, time, unordered-containers, yaml, megaparsec >= 9.7.0, transformers >= 0.6.2 --parsec >= 3.1.18.0 -- Directories containing source files. @@ -54,3 +58,8 @@ executable psb default-language: Haskell2010 ghc-options: -threaded + +source-repository head + type: git + location: https://git.pagwin.xyz/Pagwin/psb +