diff options
| author | Joey Hess <joeyh@joeyh.name> | 2017-08-23 11:48:18 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2017-08-23 11:48:18 -0400 |
| commit | 5ec42dd1b78c5d60d53c00d6494511c4b2adb943 (patch) | |
| tree | bd9f8312508e0a11c006be85fed366c615c266ae /src | |
| parent | 3a7bfdb84fc6b0aa0e6ca3580580e4403a8e0f59 (diff) | |
Add Typeable instance to Bootstrapper, fixing build with old versions of ghc. (Previous attempt was incomplete.)
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Bootstrap.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Bootstrap.hs b/src/Propellor/Bootstrap.hs index 21d29bcc..08af6878 100644 --- a/src/Propellor/Bootstrap.hs +++ b/src/Propellor/Bootstrap.hs @@ -33,7 +33,7 @@ type ShellCommand = String -- `OSOnly` uses the OS's native packages of Cabal and all of propellor's -- build dependencies. It may not work on all systems. data Bootstrapper = Robustly Builder | OSOnly - deriving (Show) + deriving (Show, Typeable) data Builder = Cabal | Stack deriving (Show, Typeable) |
