summaryrefslogtreecommitdiff
path: root/lib/SlackBuilder
diff options
context:
space:
mode:
Diffstat (limited to 'lib/SlackBuilder')
-rw-r--r--lib/SlackBuilder/Package.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SlackBuilder/Package.hs b/lib/SlackBuilder/Package.hs
index 3b3a244..7d73976 100644
--- a/lib/SlackBuilder/Package.hs
+++ b/lib/SlackBuilder/Package.hs
@@ -34,7 +34,6 @@ data Package = Package
data Download = Download
{ download :: URI
, md5sum :: Digest MD5
- , is64 :: Bool
} deriving (Eq, Show)
-- | Package maintainer information.
@@ -74,5 +73,6 @@ renderDownloadWithVersion (DownloadTemplate components) version =
-- | Function used to get the latest version of a source.
data Updater = Updater
{ detectLatest :: SlackBuilderT (Maybe Text)
+ , is64 :: Bool
, getVersion :: Text -> Text -> SlackBuilderT Download
}