about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorLangston Barrett <langston.barrett@gmail.com>2016-07-18 15:40:05 +0200
committerGraham Christensen <graham@grahamc.com>2016-07-18 13:40:05 +0000
commit4063834f92c6fa1ce6063c789ed33ba3a3d7b839 (patch)
treeaf6002203c3de44a65eff1fa8c7b51e672ed13f4 /pkgs/development/tools
parenta95cc91cf2214711b485d02ded9cc8f9b564f66a (diff)
downloadnixlib-4063834f92c6fa1ce6063c789ed33ba3a3d7b839.tar
nixlib-4063834f92c6fa1ce6063c789ed33ba3a3d7b839.tar.gz
nixlib-4063834f92c6fa1ce6063c789ed33ba3a3d7b839.tar.bz2
nixlib-4063834f92c6fa1ce6063c789ed33ba3a3d7b839.tar.lz
nixlib-4063834f92c6fa1ce6063c789ed33ba3a3d7b839.tar.xz
nixlib-4063834f92c6fa1ce6063c789ed33ba3a3d7b839.tar.zst
nixlib-4063834f92c6fa1ce6063c789ed33ba3a3d7b839.zip
vagrant: 1.8.1 -> 1.8.4
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/vagrant/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix
index c970b319a94d..6dfbb6978db7 100644
--- a/pkgs/development/tools/vagrant/default.nix
+++ b/pkgs/development/tools/vagrant/default.nix
@@ -4,7 +4,7 @@
 assert stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux";
 
 let
-  version = "1.8.1";
+  version = "1.8.4";
   rake = buildRubyGem {
     inherit ruby;
     gemName = "rake";
@@ -20,12 +20,12 @@ stdenv.mkDerivation rec {
     if stdenv.system == "x86_64-linux" then
       fetchurl {
         url    = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_x86_64.deb";
-        sha256 = "0gb999ql4kfxd9473cx3xn6a11094dm4iyrx1dzd9v2sygh1l3pd";
+        sha256 = "fd38d8e00e494a617201facb42fc2cac627e5021db15e91c2a041eac6a2d8208";
       }
     else
       fetchurl {
         url    = "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_i686.deb";
-        sha256 = "1nzg6i9i270xgaih381q096lb23rwxkif4ba9j62y3zjmj6az4xf";
+        sha256 = "555351717cacaa8660821df8988cc40a39923b06b698fca6bb90621008aab06f";
       };
 
   meta = with stdenv.lib; {
@@ -97,12 +97,12 @@ stdenv.mkDerivation rec {
 
   preFixup = ''
     # 'hide' the template file from shebang-patching
-    chmod -x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/templates/Executable
+    chmod -x $out/opt/vagrant/embedded/gems/gems/bundler-1.12.5/lib/bundler/templates/Executable
     chmod -x $out/opt/vagrant/embedded/gems/gems/vagrant-${version}/plugins/provisioners/salt/bootstrap-salt.sh
   '';
 
   postFixup = ''
-    chmod +x $out/opt/vagrant/embedded/gems/gems/bundler-1.10.6/lib/bundler/templates/Executable
+    chmod +x $out/opt/vagrant/embedded/gems/gems/bundler-1.12.5/lib/bundler/templates/Executable
     chmod +x $out/opt/vagrant/embedded/gems/gems/vagrant-${version}/plugins/provisioners/salt/bootstrap-salt.sh
   '';
 }