packages feed

kawaii 0.0.1.0 → 0.0.1.1

raw patch · 1 files changed

+16/−5 lines, 1 filesdep +kawaiidep −hakyll-serve

Dependencies added: kawaii

Dependencies removed: hakyll-serve

Files

kawaii.cabal view
@@ -3,16 +3,22 @@ -- see: https://github.com/sol/hpack  name:           kawaii-version:        0.0.1.0+version:        0.0.1.1 synopsis:       Utilities for serving static sites and blogs with Wai/Warp category:       Web homepage:       https://phabricator.chromabits.com/diffusion/KWAI/+author:         Eduardo Trujillo <ed@chromabits.com> maintainer:     Eduardo Trujillo <ed@chromabits.com> license:        Apache license-file:   LICENSE build-type:     Simple cabal-version:  >= 1.10 +flag hakyll+  description: Include Hakyll utilities+  manual: False+  default: True+ library   hs-source-dirs:       src@@ -24,7 +30,6 @@     , text     , lens     , bytestring-    , hakyll     , optparse-applicative     , warp == 3.*     , warp-tls == 3.*@@ -38,8 +43,12 @@     , mtl     , monad-logger     , monad-control+  if flag(hakyll)+    build-depends:+        hakyll+    exposed-modules:+        Hakyll.Serve.Main   exposed-modules:-      Hakyll.Serve.Main       Network.Wai.Serve       Network.Wai.Serve.Applications       Network.Wai.Serve.Listeners@@ -61,7 +70,6 @@     , text     , lens     , bytestring-    , hakyll     , optparse-applicative     , warp == 3.*     , warp-tls == 3.*@@ -75,7 +83,10 @@     , mtl     , monad-logger     , monad-control-    , hakyll-serve+    , kawaii     , hspec     , QuickCheck+  if flag(hakyll)+    build-depends:+        hakyll   default-language: Haskell2010