2020-05-07 01:03:41 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPackages
|
|
|
|
, cacert
|
|
|
|
, cargo
|
|
|
|
, diffutils
|
|
|
|
, fetchCargoTarball
|
|
|
|
, git
|
|
|
|
, rust
|
|
|
|
, rustc
|
|
|
|
, windows
|
|
|
|
}:
|
2018-11-21 12:38:49 +00:00
|
|
|
|
2019-03-02 02:45:12 +00:00
|
|
|
{ name ? "${args.pname}-${args.version}"
|
|
|
|
, cargoSha256 ? "unset"
|
2015-05-29 17:35:31 +00:00
|
|
|
, src ? null
|
|
|
|
, srcs ? null
|
2019-12-02 21:24:40 +00:00
|
|
|
, unpackPhase ? null
|
2018-08-13 05:44:30 +00:00
|
|
|
, cargoPatches ? []
|
|
|
|
, patches ? []
|
2015-05-29 17:35:31 +00:00
|
|
|
, sourceRoot ? null
|
2016-05-28 13:03:59 +00:00
|
|
|
, logLevel ? ""
|
2015-05-29 17:35:31 +00:00
|
|
|
, buildInputs ? []
|
2018-11-21 01:47:45 +00:00
|
|
|
, nativeBuildInputs ? []
|
2015-05-29 17:35:31 +00:00
|
|
|
, cargoUpdateHook ? ""
|
2016-12-03 22:36:48 +00:00
|
|
|
, cargoDepsHook ? ""
|
2017-04-15 09:14:55 +00:00
|
|
|
, cargoBuildFlags ? []
|
2019-02-26 05:52:01 +00:00
|
|
|
, buildType ? "release"
|
2019-07-21 05:00:00 +00:00
|
|
|
, meta ? {}
|
2019-10-24 10:39:08 +00:00
|
|
|
, target ? null
|
2018-02-20 09:59:26 +00:00
|
|
|
, cargoVendorDir ? null
|
2020-05-12 23:15:23 +00:00
|
|
|
, checkType ? buildType
|
2020-05-12 23:28:24 +00:00
|
|
|
|
|
|
|
# Needed to `pushd`/`popd` into a subdir of a tarball if this subdir
|
|
|
|
# contains a Cargo.toml, but isn't part of a workspace (which is e.g. the
|
|
|
|
# case for `rustfmt`/etc from the `rust-sources).
|
|
|
|
# Otherwise, everything from the tarball would've been built/tested.
|
|
|
|
, buildAndTestSubdir ? null
|
2015-05-29 17:35:31 +00:00
|
|
|
, ... } @ args:
|
2014-10-10 14:59:37 +00:00
|
|
|
|
2018-04-07 21:44:21 +00:00
|
|
|
assert cargoVendorDir == null -> cargoSha256 != "unset";
|
2019-02-26 05:52:01 +00:00
|
|
|
assert buildType == "release" || buildType == "debug";
|
2018-02-20 09:59:26 +00:00
|
|
|
|
2014-10-10 14:59:37 +00:00
|
|
|
let
|
2020-01-12 16:21:23 +00:00
|
|
|
|
2018-02-20 09:59:26 +00:00
|
|
|
cargoDeps = if cargoVendorDir == null
|
2020-03-19 00:43:07 +00:00
|
|
|
then fetchCargoTarball {
|
2019-12-02 21:24:40 +00:00
|
|
|
inherit name src srcs sourceRoot unpackPhase cargoUpdateHook;
|
2018-08-13 05:44:30 +00:00
|
|
|
patches = cargoPatches;
|
2018-02-20 09:59:26 +00:00
|
|
|
sha256 = cargoSha256;
|
|
|
|
}
|
|
|
|
else null;
|
|
|
|
|
2020-03-19 00:43:07 +00:00
|
|
|
# If we have a cargoSha256 fixed-output derivation, validate it at build time
|
|
|
|
# against the src fixed-output derivation to check consistency.
|
|
|
|
validateCargoDeps = cargoSha256 != "unset";
|
2020-01-12 16:21:23 +00:00
|
|
|
|
2020-02-15 00:51:05 +00:00
|
|
|
# Some cargo builds include build hooks that modify their own vendor
|
|
|
|
# dependencies. This copies the vendor directory into the build tree and makes
|
|
|
|
# it writable. If we're using a tarball, the unpackFile hook already handles
|
|
|
|
# this for us automatically.
|
2018-02-20 09:59:26 +00:00
|
|
|
setupVendorDir = if cargoVendorDir == null
|
2020-02-15 00:51:05 +00:00
|
|
|
then (''
|
2018-02-20 09:59:26 +00:00
|
|
|
unpackFile "$cargoDeps"
|
2020-01-12 16:21:23 +00:00
|
|
|
cargoDepsCopy=$(stripHash $cargoDeps)
|
2020-02-15 00:51:05 +00:00
|
|
|
'')
|
2018-02-20 09:59:26 +00:00
|
|
|
else ''
|
|
|
|
cargoDepsCopy="$sourceRoot/${cargoVendorDir}"
|
|
|
|
'';
|
2014-10-10 14:59:37 +00:00
|
|
|
|
2018-12-21 00:28:09 +00:00
|
|
|
rustTarget = if target == null then rust.toRustTarget stdenv.hostPlatform else target;
|
2019-08-14 09:13:19 +00:00
|
|
|
|
2018-11-21 01:47:45 +00:00
|
|
|
ccForBuild="${buildPackages.stdenv.cc}/bin/${buildPackages.stdenv.cc.targetPrefix}cc";
|
|
|
|
cxxForBuild="${buildPackages.stdenv.cc}/bin/${buildPackages.stdenv.cc.targetPrefix}c++";
|
|
|
|
ccForHost="${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc";
|
|
|
|
cxxForHost="${stdenv.cc}/bin/${stdenv.cc.targetPrefix}c++";
|
2019-10-24 10:39:08 +00:00
|
|
|
releaseDir = "target/${rustTarget}/${buildType}";
|
2020-07-14 15:32:06 +00:00
|
|
|
tmpDir = "${releaseDir}-tmp";
|
2020-01-12 16:21:23 +00:00
|
|
|
|
2020-05-07 01:03:41 +00:00
|
|
|
# Specify the stdenv's `diff` by abspath to ensure that the user's build
|
|
|
|
# inputs do not cause us to find the wrong `diff`.
|
2020-06-07 17:51:13 +00:00
|
|
|
# The `.nativeDrv` stanza works like nativeBuildInputs and ensures cross-compiling has the right version available.
|
|
|
|
diff = "${diffutils.nativeDrv or diffutils}/bin/diff";
|
2020-05-07 01:03:41 +00:00
|
|
|
|
2019-08-14 09:13:19 +00:00
|
|
|
in
|
|
|
|
|
2020-03-19 00:43:07 +00:00
|
|
|
stdenv.mkDerivation (args // {
|
2017-08-05 14:38:48 +00:00
|
|
|
inherit cargoDeps;
|
2014-10-10 14:59:37 +00:00
|
|
|
|
2015-04-23 14:37:52 +00:00
|
|
|
patchRegistryDeps = ./patch-registry-deps;
|
|
|
|
|
2019-08-14 09:50:05 +00:00
|
|
|
nativeBuildInputs = nativeBuildInputs ++ [ cacert git cargo rustc ];
|
|
|
|
buildInputs = buildInputs ++ stdenv.lib.optional stdenv.hostPlatform.isMinGW windows.pthreads;
|
2014-10-10 14:59:37 +00:00
|
|
|
|
2018-08-13 05:44:30 +00:00
|
|
|
patches = cargoPatches ++ patches;
|
|
|
|
|
2019-03-12 13:07:36 +00:00
|
|
|
PKG_CONFIG_ALLOW_CROSS =
|
|
|
|
if stdenv.buildPlatform != stdenv.hostPlatform then 1 else 0;
|
|
|
|
|
2014-10-10 14:59:37 +00:00
|
|
|
postUnpack = ''
|
2016-12-03 22:36:48 +00:00
|
|
|
eval "$cargoDepsHook"
|
|
|
|
|
2018-02-20 09:59:26 +00:00
|
|
|
${setupVendorDir}
|
2017-11-20 17:02:01 +00:00
|
|
|
|
2017-08-05 14:38:48 +00:00
|
|
|
mkdir .cargo
|
2018-09-09 13:54:00 +00:00
|
|
|
config="$(pwd)/$cargoDepsCopy/.cargo/config";
|
|
|
|
if [[ ! -e $config ]]; then
|
|
|
|
config=${./fetchcargo-default-config.toml};
|
|
|
|
fi;
|
|
|
|
substitute $config .cargo/config \
|
2018-11-21 01:47:45 +00:00
|
|
|
--subst-var-by vendor "$(pwd)/$cargoDepsCopy"
|
2015-04-23 13:14:34 +00:00
|
|
|
|
2018-11-21 01:47:45 +00:00
|
|
|
cat >> .cargo/config <<'EOF'
|
2018-12-21 00:28:09 +00:00
|
|
|
[target."${rust.toRustTarget stdenv.buildPlatform}"]
|
2018-11-21 01:47:45 +00:00
|
|
|
"linker" = "${ccForBuild}"
|
|
|
|
${stdenv.lib.optionalString (stdenv.buildPlatform.config != stdenv.hostPlatform.config) ''
|
2019-10-24 10:39:08 +00:00
|
|
|
[target."${rustTarget}"]
|
2018-11-21 01:47:45 +00:00
|
|
|
"linker" = "${ccForHost}"
|
2019-08-14 11:59:41 +00:00
|
|
|
${# https://github.com/rust-lang/rust/issues/46651#issuecomment-433611633
|
|
|
|
stdenv.lib.optionalString (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isAarch64) ''
|
|
|
|
"rustflags" = [ "-C", "target-feature=+crt-static", "-C", "link-arg=-lgcc" ]
|
|
|
|
''}
|
2018-11-21 01:47:45 +00:00
|
|
|
''}
|
|
|
|
EOF
|
2019-07-25 16:48:18 +00:00
|
|
|
|
|
|
|
export RUST_LOG=${logLevel}
|
2020-02-16 07:33:02 +00:00
|
|
|
'' + (args.postUnpack or "");
|
|
|
|
|
|
|
|
# After unpacking and applying patches, check that the Cargo.lock matches our
|
|
|
|
# src package. Note that we do this after the patchPhase, because the
|
|
|
|
# patchPhase may create the Cargo.lock if upstream has not shipped one.
|
|
|
|
postPatch = (args.postPatch or "") + stdenv.lib.optionalString validateCargoDeps ''
|
|
|
|
cargoDepsLockfile=$NIX_BUILD_TOP/$cargoDepsCopy/Cargo.lock
|
|
|
|
srcLockfile=$NIX_BUILD_TOP/$sourceRoot/Cargo.lock
|
|
|
|
|
|
|
|
echo "Validating consistency between $srcLockfile and $cargoDepsLockfile"
|
2020-05-07 01:03:41 +00:00
|
|
|
if ! ${diff} $srcLockfile $cargoDepsLockfile; then
|
2020-02-16 07:33:02 +00:00
|
|
|
|
|
|
|
# If the diff failed, first double-check that the file exists, so we can
|
|
|
|
# give a friendlier error msg.
|
|
|
|
if ! [ -e $srcLockfile ]; then
|
|
|
|
echo "ERROR: Missing Cargo.lock from src. Expected to find it at: $srcLockfile"
|
2020-06-05 07:10:53 +00:00
|
|
|
echo "Hint: You can use the cargoPatches attribute to add a Cargo.lock manually to the build."
|
2020-02-16 07:33:02 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! [ -e $cargoDepsLockfile ]; then
|
|
|
|
echo "ERROR: Missing lockfile from cargo vendor. Expected to find it at: $cargoDepsLockfile"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2019-08-24 12:29:47 +00:00
|
|
|
echo
|
2020-01-12 17:19:17 +00:00
|
|
|
echo "ERROR: cargoSha256 is out of date"
|
2019-08-24 12:29:47 +00:00
|
|
|
echo
|
2020-01-12 16:21:23 +00:00
|
|
|
echo "Cargo.lock is not the same in $cargoDepsCopy"
|
2019-08-24 12:29:47 +00:00
|
|
|
echo
|
|
|
|
echo "To fix the issue:"
|
2020-02-16 07:33:02 +00:00
|
|
|
echo '1. Use "0000000000000000000000000000000000000000000000000000" as the cargoSha256 value'
|
2019-08-24 12:29:47 +00:00
|
|
|
echo "2. Build the derivation and wait it to fail with a hash mismatch"
|
|
|
|
echo "3. Copy the 'got: sha256:' value back into the cargoSha256 field"
|
|
|
|
echo
|
|
|
|
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-01-12 16:21:23 +00:00
|
|
|
'' + ''
|
|
|
|
unset cargoDepsCopy
|
2020-02-16 07:33:02 +00:00
|
|
|
'';
|
2019-07-25 16:48:18 +00:00
|
|
|
|
|
|
|
configurePhase = args.configurePhase or ''
|
|
|
|
runHook preConfigure
|
2018-11-21 01:47:45 +00:00
|
|
|
runHook postConfigure
|
|
|
|
'';
|
|
|
|
|
2017-04-15 09:14:55 +00:00
|
|
|
buildPhase = with builtins; args.buildPhase or ''
|
2020-05-12 23:28:24 +00:00
|
|
|
${stdenv.lib.optionalString (buildAndTestSubdir != null) "pushd ${buildAndTestSubdir}"}
|
2017-04-15 10:42:09 +00:00
|
|
|
runHook preBuild
|
2019-02-22 06:16:20 +00:00
|
|
|
|
|
|
|
(
|
|
|
|
set -x
|
2018-11-21 01:47:45 +00:00
|
|
|
env \
|
2018-12-21 00:28:09 +00:00
|
|
|
"CC_${rust.toRustTarget stdenv.buildPlatform}"="${ccForBuild}" \
|
|
|
|
"CXX_${rust.toRustTarget stdenv.buildPlatform}"="${cxxForBuild}" \
|
|
|
|
"CC_${rust.toRustTarget stdenv.hostPlatform}"="${ccForHost}" \
|
|
|
|
"CXX_${rust.toRustTarget stdenv.hostPlatform}"="${cxxForHost}" \
|
2018-11-21 01:47:45 +00:00
|
|
|
cargo build \
|
2019-07-31 12:19:01 +00:00
|
|
|
${stdenv.lib.optionalString (buildType == "release") "--release"} \
|
2019-10-24 10:39:08 +00:00
|
|
|
--target ${rustTarget} \
|
2018-11-21 01:47:45 +00:00
|
|
|
--frozen ${concatStringsSep " " cargoBuildFlags}
|
2019-02-22 06:16:20 +00:00
|
|
|
)
|
|
|
|
|
2017-04-15 10:42:09 +00:00
|
|
|
runHook postBuild
|
2014-10-10 14:59:37 +00:00
|
|
|
|
2020-05-12 23:28:24 +00:00
|
|
|
${stdenv.lib.optionalString (buildAndTestSubdir != null) "popd"}
|
2020-03-24 17:32:59 +00:00
|
|
|
|
|
|
|
# This needs to be done after postBuild: packages like `cargo` do a pushd/popd in
|
|
|
|
# the pre/postBuild-hooks that need to be taken into account before gathering
|
|
|
|
# all binaries to install.
|
2020-07-14 15:32:06 +00:00
|
|
|
mkdir -p $tmpDir
|
|
|
|
cp -r $releaseDir/* $tmpDir/
|
|
|
|
bins=$(find $tmpDir \
|
2020-03-24 17:32:59 +00:00
|
|
|
-maxdepth 1 \
|
|
|
|
-type f \
|
|
|
|
-executable ! \( -regex ".*\.\(so.[0-9.]+\|so\|a\|dylib\)" \))
|
|
|
|
'';
|
|
|
|
|
2020-07-14 12:39:13 +00:00
|
|
|
checkPhase = args.checkPhase or (let
|
2020-05-12 23:15:23 +00:00
|
|
|
argstr = "${stdenv.lib.optionalString (checkType == "release") "--release"} --target ${rustTarget} --frozen";
|
2020-02-25 20:21:04 +00:00
|
|
|
in ''
|
2020-05-12 23:28:24 +00:00
|
|
|
${stdenv.lib.optionalString (buildAndTestSubdir != null) "pushd ${buildAndTestSubdir}"}
|
2017-04-15 10:42:09 +00:00
|
|
|
runHook preCheck
|
2020-05-06 21:25:01 +00:00
|
|
|
echo "Running cargo test ${argstr} -- ''${checkFlags} ''${checkFlagsArray+''${checkFlagsArray[@]}}"
|
2020-02-25 20:21:04 +00:00
|
|
|
cargo test ${argstr} -- ''${checkFlags} ''${checkFlagsArray+"''${checkFlagsArray[@]}"}
|
2017-04-15 10:42:09 +00:00
|
|
|
runHook postCheck
|
2020-05-12 23:28:24 +00:00
|
|
|
${stdenv.lib.optionalString (buildAndTestSubdir != null) "popd"}
|
2020-02-25 20:21:04 +00:00
|
|
|
'');
|
2015-04-21 18:34:26 +00:00
|
|
|
|
|
|
|
doCheck = args.doCheck or true;
|
|
|
|
|
2020-03-18 13:50:12 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2020-07-14 15:32:06 +00:00
|
|
|
inherit releaseDir tmpDir;
|
2018-11-21 01:47:45 +00:00
|
|
|
|
2014-10-10 14:59:37 +00:00
|
|
|
installPhase = args.installPhase or ''
|
2017-04-15 10:42:09 +00:00
|
|
|
runHook preInstall
|
2020-02-25 20:21:04 +00:00
|
|
|
|
|
|
|
# rename the output dir to a architecture independent one
|
2020-07-14 15:32:06 +00:00
|
|
|
mapfile -t targets < <(find "$NIX_BUILD_TOP" -type d | grep '${tmpDir}$')
|
2020-02-25 20:21:04 +00:00
|
|
|
for target in "''${targets[@]}"; do
|
|
|
|
rm -rf "$target/../../${buildType}"
|
|
|
|
ln -srf "$target" "$target/../../"
|
|
|
|
done
|
2018-09-30 14:03:35 +00:00
|
|
|
mkdir -p $out/bin $out/lib
|
2018-11-21 01:47:45 +00:00
|
|
|
|
2020-03-24 17:32:59 +00:00
|
|
|
xargs -r cp -t $out/bin <<< $bins
|
2020-07-14 15:32:06 +00:00
|
|
|
find $tmpDir \
|
2018-11-21 01:47:45 +00:00
|
|
|
-maxdepth 1 \
|
|
|
|
-regex ".*\.\(so.[0-9.]+\|so\|a\|dylib\)" \
|
|
|
|
-print0 | xargs -r -0 cp -t $out/lib
|
2018-09-30 14:03:35 +00:00
|
|
|
rmdir --ignore-fail-on-non-empty $out/lib $out/bin
|
2017-04-15 10:42:09 +00:00
|
|
|
runHook postInstall
|
2014-10-10 14:59:37 +00:00
|
|
|
'';
|
2017-08-05 14:38:48 +00:00
|
|
|
|
2017-10-26 16:43:17 +00:00
|
|
|
passthru = { inherit cargoDeps; } // (args.passthru or {});
|
2019-07-21 05:00:00 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
# default to Rust's platforms
|
|
|
|
platforms = rustc.meta.platforms;
|
|
|
|
} // meta;
|
2014-10-10 14:59:37 +00:00
|
|
|
})
|