rust: fix evaluation

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