🐙 Templated web page generator for your git repositories
git clone https://github.com/m-col/gitja
Files | Refs | Readme | License

Commit ef9d238fb2695339d1f90c4d179e93a4207cb16f
Parent: cc62c1dac192cd611202bc7af69bd57e8810208c
Author: mcol <mcol@posteo.net>
Date: 2021-09-23 23:08:32 +0100
Committer: mcol <mcol@posteo.net>
Committed: 2021-09-23 23:08:32 +0100

Explicitly specify deriving strategies

src/Config.hs Modified

@@ -1,4 +1,5 @@
-{-# LANGUAGE DeriveGeneric #-}
+{-# LANGUAGE DeriveGeneric #-}  -- Required by Dhall
+{-# LANGUAGE DerivingStrategies #-}
 
 module Config (
     Config,
@@ -16,7 +17,7 @@
     , outputDirectory :: FilePath
     , host :: FilePath
     }
-    deriving (Generic, Show)
+    deriving stock (Generic, Show)
 
 instance FromDhall Config