From 8762f15a415873b70698982a2c8dc112a55d2d95 Mon Sep 17 00:00:00 2001 From: Levi Pearson Date: Thu, 18 May 2017 22:05:51 -0600 Subject: [PATCH] Update stack.yaml to lts-8.12, change default server IP --- src/Main.hs | 2 +- stack.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Main.hs b/src/Main.hs index aab8d6f..1e30659 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -12,7 +12,7 @@ main = let ircConf = IrcConfig { _ircPort = "6665" - , _ircHost = Host "127.0.0.1" + , _ircHost = Host "0.0.0.0" , _ircHostName = "pinealservo.com" , _ircMotd = ["Welcome to the IRC Server!"] , _ircPass = Nothing diff --git a/stack.yaml b/stack.yaml index 92f5bfa..18a3681 100644 --- a/stack.yaml +++ b/stack.yaml @@ -1,14 +1,14 @@ # For more information, see: http://docs.haskellstack.org/en/stable/yaml_configuration.html # Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2) -resolver: lts-5.0 +resolver: lts-8.12 # Local packages, usually specified by relative directory name packages: - '.' # Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3) -extra-deps: [] +extra-deps: [pipes-network-0.6.4.1] # Override default flag values for local packages and extra-deps flags: {}