diff options
| author | Joey Hess <joeyh@joeyh.name> | 2017-07-25 21:10:11 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2017-07-25 21:10:11 -0400 |
| commit | 27e5d0c6c20d95221bb5e6d96de720c52f03fdf4 (patch) | |
| tree | d821b1cccd13c5954b3b0dd7b2e535c525c6188a /src | |
| parent | 2cbd328ce130e9634d5986645f609976d27c6165 (diff) | |
Add Typeable instance to Bootstrapper, fixing build with old versions of ghc.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Bootstrap.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Propellor/Bootstrap.hs b/src/Propellor/Bootstrap.hs index 21f051c9..21d29bcc 100644 --- a/src/Propellor/Bootstrap.hs +++ b/src/Propellor/Bootstrap.hs @@ -1,3 +1,5 @@ +{-# LANGUAGE DeriveDataTypeable #-} + module Propellor.Bootstrap ( Bootstrapper(..), Builder(..), @@ -34,7 +36,7 @@ data Bootstrapper = Robustly Builder | OSOnly deriving (Show) data Builder = Cabal | Stack - deriving (Show) + deriving (Show, Typeable) defaultBootstrapper :: Bootstrapper defaultBootstrapper = Robustly Cabal |
