6b23cfe689
There are several tarballs (such as the `rust-lang/rust`-source) with a `Cargo.toml` at root and several sub-packages (with their own Cargo.toml) without using workspaces[1]. In such a case it's needed to move into a subdir to only build the specified sub-package (e.g. `rustfmt` or `rsl`), however the artifacts are at `/target` in the root-dir of the build environment. This breaks the build since `buildRustPackage` searches for executables in `target` (which is at the build-env's root) at the end of the `buildPhase`. With the optional `buildAndTestSubdir`-argument, the builder moves into the specified subdir using `pushd`/`popd` during `buildPhase` and `checkPhase`. Also moved the logic to find executables and libs to the end of the `buildPhase` from a custom `postBuild`-hook to fix packages with custom `build`/`install`-procedures such as `uutils-coreutils`. [1] https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html
35 lines
1.3 KiB
Nix
35 lines
1.3 KiB
Nix
{ stdenv, lib, rustPlatform, rustc, Security, patchelf }:
|
|
rustPlatform.buildRustPackage {
|
|
name = "clippy-${rustc.version}";
|
|
inherit (rustc) version src;
|
|
|
|
# the rust source tarball already has all the dependencies vendored, no need to fetch them again
|
|
cargoVendorDir = "vendor";
|
|
buildAndTestSubdir = "src/tools/clippy";
|
|
|
|
# changes hash of vendor directory otherwise
|
|
dontUpdateAutotoolsGnuConfigScripts = true;
|
|
|
|
buildInputs = [ rustc rustc.llvm ] ++ stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
# fixes: error: the option `Z` is only accepted on the nightly compiler
|
|
RUSTC_BOOTSTRAP = 1;
|
|
|
|
# Without disabling the test the build fails with:
|
|
# error: failed to run custom build command for `rustc_llvm v0.0.0
|
|
# (/private/tmp/nix-build-clippy-1.36.0.drv-0/rustc-1.36.0-src/src/librustc_llvm)
|
|
doCheck = false;
|
|
|
|
preFixup = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
install_name_tool -add_rpath "${rustc}/lib" $out/bin/clippy-driver
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://rust-lang.github.io/rust-clippy/";
|
|
description = "A bunch of lints to catch common mistakes and improve your Rust code";
|
|
maintainers = with maintainers; [ basvandijk ];
|
|
license = with licenses; [ mit asl20 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|