packages feed

virthualenv 0.2.1 → 0.2.2

raw patch · 3 files changed

+7/−2 lines, 3 files

Files

README.md view
@@ -1,6 +1,8 @@ Virtual Haskell Environment =========================== +virthualenv is deprecated, please use the hsenv tool.+ What is it? ----------- virthualenv is a tool (inspired by Python's virtualenv)
src/virthualenv.hs view
@@ -11,9 +11,10 @@  main :: IO () main = do+    hPutStrLn stderr "virthualenv is deprecated, please use the hsenv tool."     args <- getArgs     case args of-      ["--version"] -> putStrLn "0.2.1"+      ["--version"] -> putStrLn "0.2.2"       ["--help"] -> usage       ["-h"]     -> usage       _          ->
virthualenv.cabal view
@@ -1,10 +1,12 @@ Name:                virthualenv -Version:             0.2.1+Version:             0.2.2  Synopsis:            Virtual Haskell Environment builder  Description:         virthualenv is a tool (inspired by Python's virtualenv) to create isolated Haskell environments.+                     .+                     virthualenv is deprecated, please use the hsenv tool.                      .                      It creates a sandboxed environment in a .virthualenv/ directory, which, when activated,                      allows you to use regular Haskell tools (ghc, ghci, ghc-pkg, cabal) to manage your Haskell