rust: fix evaluation

+2 -2
+2 -2
pkgs/build-support/rust/fetchcargo.nix
··· 1 - { stdenv, cacert, git, rust, cargoVendor }: 1 + { stdenv, cacert, git, rust, cargo-vendor }: 2 2 { name ? "cargo-deps", src, srcs, sourceRoot, sha256, cargoUpdateHook ? "" }: 3 3 stdenv.mkDerivation { 4 4 name = "${name}-vendor"; 5 - nativeBuildInputs = [ cacert cargoVendor git rust.cargo ]; 5 + nativeBuildInputs = [ cacert cargo-vendor git rust.cargo ]; 6 6 inherit src srcs sourceRoot; 7 7 8 8 phases = "unpackPhase installPhase";