rust: 1.31.0 -> 1.32.0

This commit is contained in:
Luka Blaskovic
2019-01-22 08:05:17 +00:00
committed by Luka Blaskovic
parent 2bfa8747f7
commit cc5b55f944
5 changed files with 15 additions and 34 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ rustPlatform.buildRustPackage rec {
inherit version src patches;
# the rust source tarball already has all the dependencies vendored, no need to fetch them again
cargoVendorDir = "src/vendor";
preBuild = "cd src; pushd tools/cargo";
cargoVendorDir = "vendor";
preBuild = "pushd src/tools/cargo";
postBuild = "popd";
passthru.rustc = rustc;