about summary refs log tree commit diff
path: root/pkgs/development/tools/vagrant
diff options
context:
space:
mode:
authorDiego Zamboni <diego@zzamboni.org>2017-10-02 10:06:03 +0200
committerDiego Zamboni <diego@zzamboni.org>2017-10-02 10:06:03 +0200
commit9bcd1de373ca5b4401f7c5dee5ca94edb36a1ab3 (patch)
treeda7a1a8ccb073ba61fd97ab3e83b33a4b21a2393 /pkgs/development/tools/vagrant
parent761a12f8b5d7326fcddc7c17559ff8ee820980ea (diff)
downloadnixlib-9bcd1de373ca5b4401f7c5dee5ca94edb36a1ab3.tar
nixlib-9bcd1de373ca5b4401f7c5dee5ca94edb36a1ab3.tar.gz
nixlib-9bcd1de373ca5b4401f7c5dee5ca94edb36a1ab3.tar.bz2
nixlib-9bcd1de373ca5b4401f7c5dee5ca94edb36a1ab3.tar.lz
nixlib-9bcd1de373ca5b4401f7c5dee5ca94edb36a1ab3.tar.xz
nixlib-9bcd1de373ca5b4401f7c5dee5ca94edb36a1ab3.tar.zst
nixlib-9bcd1de373ca5b4401f7c5dee5ca94edb36a1ab3.zip
vagrant: 1.9.5 -> 2.0.0
Upgrade to latest version of Vagrant.

After installation, the following messages appear whenever vagrant runs.
These were already present in previous versions, I'm not sure if/what
to do about them:

Ignoring ffi-1.9.18 because its extensions are not built.  Try: gem pristine ffi --version 1.9.18
Ignoring unf_ext-0.0.7.4 because its extensions are not built.  Try: gem pristine unf_ext --version 0.0.7.4
Ignoring wdm-0.1.1 because its extensions are not built.  Try: gem pristine wdm --version 0.1.1
Diffstat (limited to 'pkgs/development/tools/vagrant')
-rw-r--r--pkgs/development/tools/vagrant/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix
index 8d86c96e4bfe..91c0054fe91a 100644
--- a/pkgs/development/tools/vagrant/default.nix
+++ b/pkgs/development/tools/vagrant/default.nix
@@ -2,7 +2,7 @@
 , libxml2, libxslt, libffi, makeWrapper, p7zip, xar, gzip, cpio }:
 
 let
-  version = "1.9.5";
+  version = "2.0.0";
   rake = buildRubyGem {
     inherit ruby;
     gemName = "rake";
@@ -17,9 +17,9 @@ let
       else "system ${stdenv.system} not supported";
 
   sha256 = {
-    "x86_64-linux"  = "16ijzaacfbqrgh561bf51747d2rv8kydgs14dfdr572qi0f88baw";
-    "i686-linux"    = "0lvkb4k0a34a8hzlsi0apf056rhyprh5w0gn16d0n2ijnaf9j2yk";
-    "x86_64-darwin" = "070mrczsx1j0jl9sx6963l3hrk9anqa13r008wk1d22d25xj25mc";
+    "x86_64-linux"  = "184amybyxqlxqr8fk6lyx2znmci1fazsiby90q7d1xx2ihz3hm5x";
+    "i686-linux"    = "19r1m5jila40x69m1qz2hslz7v1hdg8wwdhcq8d5qjnzwfmlw2qz";
+    "x86_64-darwin" = "154400iqs01235bclr8ic7g9jv01lfs766bmv7p8784r3xsblvsr";
   }."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
 
   arch = builtins.replaceStrings ["-linux" "-darwin"] ["" ""] stdenv.system;