From 208759f31cedcef4ce9d4c90da1300fc7265a38e Mon Sep 17 00:00:00 2001 From: Konstantin Molchanov Date: Tue, 4 Oct 2016 13:06:56 +0400 Subject: [PATCH] Nim 0.15.0: Fix Nimble and backward-compatibility (#1061) --- nim.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/nim.json b/nim.json index b0ccf15577..426ae35f16 100644 --- a/nim.json +++ b/nim.json @@ -14,7 +14,13 @@ }, "depends": "gcc", "post_install": " +# Copy Nimble package +Copy-Item -Recurse $dir\\dist\\nimble\\src\\nimblepkg $dir\\bin +# Download DLLs +Invoke-WebRequest http://nim-lang.org/download/dlls.zip -OutFile $dir\\dlls.zip +Expand-Archive $dir\\dlls.zip $dir\\bin # Removes installation cruft -rm -r $dir\\`$PLUGINSDIR", +rm -r $dir\\`$PLUGINSDIR +rm $dir\\dlls.zip", "env_add_path": "bin" }