summaryrefslogtreecommitdiff
path: root/src/Propellor/Types/OS.hs
diff options
context:
space:
mode:
authorFĂ©lix Sipma2016-05-25 15:51:16 +0200
committerJoey Hess2016-06-13 23:26:32 -0400
commitb7a0afbc3e814935c34e0553d3f09dfe2d2b387e (patch)
tree74ac5d568520407b7f45a3c324ca4d2bc50fcfc0 /src/Propellor/Types/OS.hs
parent55717902681f27a0649fbaec9ad17f1cba09eb6f (diff)
reformat Architecture definition
(cherry picked from commit 1f036a1448c7a7332080c28c5074d9c06e69806b)
Diffstat (limited to 'src/Propellor/Types/OS.hs')
-rw-r--r--src/Propellor/Types/OS.hs23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/Propellor/Types/OS.hs b/src/Propellor/Types/OS.hs
index 7a60d412..9e7a412a 100644
--- a/src/Propellor/Types/OS.hs
+++ b/src/Propellor/Types/OS.hs
@@ -76,7 +76,28 @@ isStable (Stable _) = True
isStable _ = False
type Release = String
-data Architecture = X86_64 | X86_32 | ARMHF | ARMEL | ANDROID | PPC | PPC64 | SPARC | SPARC64 | MIPS | MIPSEL | MIPS64EL | SH4 | IA64 | S390 | S390X | ALPHA | HPPA | M68K | ARM64 | X32
+data Architecture
+ = X86_64
+ | X86_32
+ | ARMHF
+ | ARMEL
+ | ANDROID
+ | PPC
+ | PPC64
+ | SPARC
+ | SPARC64
+ | MIPS
+ | MIPSEL
+ | MIPS64EL
+ | SH4
+ | IA64
+ | S390
+ | S390X
+ | ALPHA
+ | HPPA
+ | M68K
+ | ARM64
+ | X32
deriving (Show, Eq)
-- TODO: remove ANDROID (used in GitAnnexBuilder)