diff options
| author | Sean Whitton <spwhitton@spwhitton.name> | 2017-11-05 09:49:01 -0700 |
|---|---|---|
| committer | Sean Whitton <spwhitton@spwhitton.name> | 2017-11-05 09:49:01 -0700 |
| commit | 8b50c1669a910bd88bf3b63e03a550815eadd4db (patch) | |
| tree | 337a3007f8c04533a429d87e9a8e79dc188cbd23 /src | |
| parent | 601b526ccb4d76b0e63a4f62fd76cf5ae3d37663 (diff) | |
| parent | 0a23ae75450cb4938af34fdd591a0605244a62b9 (diff) | |
Merge branch 'master' of https://git.joeyh.name/git/propellor into sbuild-overhaul
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Property/PropellorRepo.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Propellor/Property/PropellorRepo.hs b/src/Propellor/Property/PropellorRepo.hs index 504ff395..825efdfd 100644 --- a/src/Propellor/Property/PropellorRepo.hs +++ b/src/Propellor/Property/PropellorRepo.hs @@ -1,3 +1,5 @@ +{-# LANGUAGE DeriveDataTypeable #-} + module Propellor.Property.PropellorRepo where import Propellor.Base @@ -24,4 +26,4 @@ hasOriginUrl u = setInfoProperty p (toInfo (InfoVal (OriginUrl u))) else makeChange $ setRepoUrl u newtype OriginUrl = OriginUrl String - deriving (Show) + deriving (Show, Typeable) |
