$OpenBSD: patch-src_Plugins_Monitors_Weather_hs,v 1.3 2013/11/25 10:31:04 dcoppa Exp $

Use lynx(1) from base instead of curl

--- src/Plugins/Monitors/Weather.hs.orig	Sun Oct 27 21:43:04 2013
+++ src/Plugins/Monitors/Weather.hs	Mon Nov 25 09:45:37 2013
@@ -131,7 +131,7 @@ defUrl = "http://weather.noaa.gov/pub/data/observation
 
 getData :: String -> IO String
 getData url=
-        do (i,o,e,p) <- runInteractiveCommand ("curl " ++ defUrl ++ url ++ ".TXT")
+        do (i,o,e,p) <- runInteractiveCommand ("lynx -source " ++ defUrl ++ url ++ ".TXT")
            exit <- waitForProcess p
            let closeHandles = do hClose o
                                  hClose i
