summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-02-04 00:09:00 +0000
committerJörg Thalheim <joerg@thalheim.io>2018-02-04 00:09:00 +0000
commit2a2c8eab26ab75b381d3fec32efa412d7344a09e (patch)
tree157909dc87594681ae945f7d85c8a9c3df4b2fc6 /pkgs
parent113b04ae28983b319b0385ae49739c014f39e633 (diff)
downloadnixpkgs-2a2c8eab26ab75b381d3fec32efa412d7344a09e.tar
nixpkgs-2a2c8eab26ab75b381d3fec32efa412d7344a09e.tar.gz
nixpkgs-2a2c8eab26ab75b381d3fec32efa412d7344a09e.tar.bz2
nixpkgs-2a2c8eab26ab75b381d3fec32efa412d7344a09e.tar.lz
nixpkgs-2a2c8eab26ab75b381d3fec32efa412d7344a09e.tar.xz
nixpkgs-2a2c8eab26ab75b381d3fec32efa412d7344a09e.tar.zst
nixpkgs-2a2c8eab26ab75b381d3fec32efa412d7344a09e.zip
rust: fix evaluation
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/build-support/rust/fetchcargo.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/build-support/rust/fetchcargo.nix b/pkgs/build-support/rust/fetchcargo.nix
index 19cffcd9c14..d03d85c0788 100644
--- a/pkgs/build-support/rust/fetchcargo.nix
+++ b/pkgs/build-support/rust/fetchcargo.nix
@@ -1,8 +1,8 @@
-{ stdenv, cacert, git, rust, cargoVendor }:
+{ stdenv, cacert, git, rust, cargo-vendor }:
 { name ? "cargo-deps", src, srcs, sourceRoot, sha256, cargoUpdateHook ? "" }:
 stdenv.mkDerivation {
   name = "${name}-vendor";
-  nativeBuildInputs = [ cacert cargoVendor git rust.cargo ];
+  nativeBuildInputs = [ cacert cargo-vendor git rust.cargo ];
   inherit src srcs sourceRoot;
 
   phases = "unpackPhase installPhase";