
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
45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, rustPlatform
|
|
, openssh, openssl, pkgconfig, cmake, zlib, curl, libiconv
|
|
, CoreFoundation, Security }:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "rls";
|
|
inherit (rustPlatform.rust.rustc) src version;
|
|
|
|
# changes hash of vendor directory otherwise
|
|
dontUpdateAutotoolsGnuConfigScripts = true;
|
|
|
|
cargoVendorDir = "vendor";
|
|
buildAndTestSubdir = "src/tools/rls";
|
|
|
|
preBuild = ''
|
|
# client tests are flaky
|
|
rm tests/client.rs
|
|
'';
|
|
|
|
# a nightly compiler is required unless we use this cheat code.
|
|
RUSTC_BOOTSTRAP=1;
|
|
|
|
# rls-rustc links to rustc_private crates
|
|
CARGO_BUILD_RUSTFLAGS = if stdenv.isDarwin then "-C rpath" else null;
|
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
buildInputs = [ openssh openssl curl zlib libiconv rustPlatform.rust.rustc.llvm ]
|
|
++ (stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Security ]);
|
|
|
|
doCheck = true;
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
$out/bin/rls --version
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Rust Language Server - provides information about Rust programs to IDEs and other tools";
|
|
homepage = "https://github.com/rust-lang/rls/";
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
maintainers = with maintainers; [ symphorien ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|