3
0
Fork 0
forked from mirrors/nixpkgs

Merge branch 'mboes-vagrant-ld-path-fix'

This commit is contained in:
Mateusz Kowalczyk 2015-12-16 17:20:06 +00:00
commit c6549af6a9

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, dpkg, curl, libarchive, openssl, ruby, buildRubyGem, libiconv
, libxml2, libxslt }:
, libxml2, libxslt, makeWrapper }:
assert stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux";
@ -35,6 +35,8 @@ stdenv.mkDerivation rec {
platforms = platforms.linux;
};
buildInputs = [ makeWrapper ];
unpackPhase = ''
${dpkg}/bin/dpkg-deb -x ${src} .
'';
@ -89,6 +91,7 @@ stdenv.mkDerivation rec {
mkdir -p "$out"
cp -r opt "$out"
cp -r usr/bin "$out"
wrapProgram $out/bin/vagrant --prefix LD_LIBRARY_PATH : $out/opt/vagrant/embedded/lib
'';
preFixup = ''