diff options
| author | Joey Hess <joeyh@joeyh.name> | 2017-02-04 17:14:08 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2017-02-04 17:14:08 -0400 |
| commit | cdfa8a919730b2e58e1ef243fd2472dec1ad67a3 (patch) | |
| tree | 98d3ed9a00b42665ae83d1c8b8522182da3e94c9 /src | |
| parent | 8f37ddf53da31987f3db01d51fd9119d1e0c8a1d (diff) | |
improve layout
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Types/MetaTypes.hs | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/Propellor/Types/MetaTypes.hs b/src/Propellor/Types/MetaTypes.hs index 2b347185..19d1998e 100644 --- a/src/Propellor/Types/MetaTypes.hs +++ b/src/Propellor/Types/MetaTypes.hs @@ -36,17 +36,19 @@ data MetaType deriving (Show, Eq, Ord) -- | Any unix-like system -type UnixLike = MetaTypes '[ 'Targeting 'OSDebian - , 'Targeting 'OSBuntish - , 'Targeting 'OSArchLinux - , 'Targeting 'OSFreeBSD - ] +type UnixLike = MetaTypes + '[ 'Targeting 'OSDebian + , 'Targeting 'OSBuntish + , 'Targeting 'OSArchLinux + , 'Targeting 'OSFreeBSD + ] -- | Any linux system -type Linux = MetaTypes '[ 'Targeting 'OSDebian - , 'Targeting 'OSBuntish - , 'Targeting 'OSArchLinux - ] +type Linux = MetaTypes + '[ 'Targeting 'OSDebian + , 'Targeting 'OSBuntish + , 'Targeting 'OSArchLinux + ] -- | Debian and derivatives. type DebianLike = MetaTypes '[ 'Targeting 'OSDebian, 'Targeting 'OSBuntish ] |
