2021-03-10 05:48:37 +08:00
|
|
|
{ stdenv, lib, cacert, git, cargo, cargo-vendor }:
|
2019-02-14 15:29:42 +08:00
|
|
|
{ name, src, sha256 }:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "${name}-vendor";
|
2020-11-27 00:09:40 +08:00
|
|
|
strictDeps = true;
|
2019-02-14 15:29:42 +08:00
|
|
|
nativeBuildInputs = [ cacert git cargo cargo-vendor ];
|
|
|
|
inherit src;
|
|
|
|
|
|
|
|
phases = "unpackPhase patchPhase installPhase";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
if [[ ! -f Cargo.lock ]]; then
|
|
|
|
echo
|
|
|
|
echo "ERROR: The Cargo.lock file doesn't exist"
|
|
|
|
echo
|
|
|
|
echo "Cargo.lock is needed to make sure that cargoSha256 doesn't change"
|
|
|
|
echo "when the registry is updated."
|
|
|
|
echo
|
|
|
|
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
export CARGO_HOME=$(mktemp -d cargo-home.XXX)
|
|
|
|
|
|
|
|
cargo vendor
|
|
|
|
|
|
|
|
cp -ar vendor $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
outputHashAlgo = "sha256";
|
|
|
|
outputHashMode = "recursive";
|
|
|
|
outputHash = sha256;
|
|
|
|
|
2021-03-10 05:48:37 +08:00
|
|
|
impureEnvVars = lib.fetchers.proxyImpureEnvVars;
|
2019-02-14 15:29:42 +08:00
|
|
|
preferLocalBuild = true;
|
|
|
|
}
|