Update nim to 0.11.2

Removed nim_debug.exe (doesn't exist anymore), added nimble.exe (nim's package manager).
This commit is contained in:
Konstantin Molchanov 2015-05-09 15:53:45 +03:00
parent 3c4cd15318
commit f9d6a1da6c

View File

@ -1,25 +1,25 @@
{ {
"homepage": "http://nim-lang.org/", "homepage": "http://nim-lang.org/",
"version": "0.10.2", "version": "0.11.2",
"license": "MIT", "license": "MIT",
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "http://nim-lang.org/download/nim-0.10.2_x64.exe#/dl.7z", "url": "http://nim-lang.org/download/nim-0.11.2_x64.exe#/dl.7z",
"hash": "6221d688be567c15e0087f87dccaee5544cd537bfa6b032c72545dfbe1c806db" "hash": "27d23d16a6b7a30d1db24c522623cf7128eb2c2c4f8cb9b503ebf78568c174bc"
}, },
"32bit": { "32bit": {
"url": "http://nim-lang.org/download/nim-0.10.2_x32.exe#/dl.7z", "url": "http://nim-lang.org/download/nim-0.11.2_x32.exe#/dl.7z",
"hash": "f447b27ff66f2611cfef92c87ad002bba236e503038bfe5e2b36adc2d3b3f16e" "hash": "88bbda792dc95a50f5d04c5411ce32cc2c5bb06116410387b71d838281331cdc"
} }
}, },
"bin": [ "bin": [
"bin\\nimgrep.exe", "bin\\nimgrep.exe",
"bin\\nim.exe", "bin\\nim.exe",
"bin\\nim_debug.exe" "bin\\nimble.exe"
], ],
"depends": "gcc", "depends": "gcc",
"post_install": " "post_install": "
# Removes installation cruft # Removes installation cruft
rm -r $dir\\`$PLUGINSDIR rm -r $dir\\`$PLUGINSDIR
rm -r $dir\\`$COMMONFILES" rm -r $dir\\`$COMMONFILES"
} }