summaryrefslogtreecommitdiff
path: root/src/Propellor/Types
diff options
context:
space:
mode:
authorJoey Hess2017-02-04 17:14:08 -0400
committerJoey Hess2017-02-04 17:14:08 -0400
commitcdfa8a919730b2e58e1ef243fd2472dec1ad67a3 (patch)
tree98d3ed9a00b42665ae83d1c8b8522182da3e94c9 /src/Propellor/Types
parent8f37ddf53da31987f3db01d51fd9119d1e0c8a1d (diff)
improve layout
Diffstat (limited to 'src/Propellor/Types')
-rw-r--r--src/Propellor/Types/MetaTypes.hs20
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 ]