cargo-vendor: move to all-packages

This commit is contained in:
Jörg Thalheim 2018-02-03 22:30:45 +00:00
parent 8f20e7ce3a
commit 6580b18d3f
2 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,7 @@
{ callPackage, fetchurl, stdenv, path, cacert, git, rust }:
{ callPackage, fetchurl, stdenv, path, cacert, git, rust, cargo-vendor }:
let
cargoVendor = callPackage ./cargo-vendor {};
fetchcargo = import ./fetchcargo.nix {
inherit stdenv cacert git rust cargoVendor;
inherit stdenv cacert git rust cargo-vendor;
};
in
{ name, cargoSha256

View File

@ -6488,6 +6488,8 @@ with pkgs;
buildRustCrate = callPackage ../build-support/rust/build-rust-crate.nix { };
cargo-vendor = callPackage ../build-support/rust/cargo-vendor {};
carnix = (callPackage ../build-support/rust/carnix.nix { }).carnix { };
defaultCrateOverrides = callPackage ../build-support/rust/default-crate-overrides.nix { };