61462c94e6
Apparently everyone just copied those variables, instead of creating a library constant for them. Some even removed the comment. -.-
26 lines
645 B
Nix
26 lines
645 B
Nix
{ stdenv, cacert, git, rust, rustRegistry }:
|
|
{ name ? "cargo-deps", src, srcs, sourceRoot, sha256, cargoUpdateHook ? "" }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "${name}-fetch";
|
|
buildInputs = [ rust.cargo rust.rustc git ];
|
|
inherit src srcs sourceRoot rustRegistry cargoUpdateHook;
|
|
|
|
phases = "unpackPhase installPhase";
|
|
|
|
installPhase = ''
|
|
source ${./fetch-cargo-deps}
|
|
|
|
export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt
|
|
|
|
fetchCargoDeps . "$out"
|
|
'';
|
|
|
|
outputHashAlgo = "sha256";
|
|
outputHashMode = "recursive";
|
|
outputHash = sha256;
|
|
|
|
impureEnvVars = stdenv.lib.fetchers.proxyImpureEnvVars;
|
|
preferLocalBuild = true;
|
|
}
|