2021-01-22 11:25:31 +00:00
|
|
|
{ lib, stdenv, makeWrapper, fetchFromGitHub, rustPlatform
|
2021-01-19 06:50:56 +00:00
|
|
|
, openssh, openssl, pkg-config, cmake, zlib, curl, libiconv
|
2019-07-21 21:29:40 +01:00
|
|
|
, CoreFoundation, Security }:
|
2018-09-01 14:13:10 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
rustPlatform.buildRustPackage {
|
2019-07-21 21:29:40 +01:00
|
|
|
pname = "rls";
|
2019-08-16 18:03:38 +01:00
|
|
|
inherit (rustPlatform.rust.rustc) src version;
|
|
|
|
|
|
|
|
# changes hash of vendor directory otherwise
|
|
|
|
dontUpdateAutotoolsGnuConfigScripts = true;
|
2018-09-01 14:13:10 +01:00
|
|
|
|
2019-08-16 18:03:38 +01:00
|
|
|
cargoVendorDir = "vendor";
|
2020-05-13 00:28:24 +01:00
|
|
|
buildAndTestSubdir = "src/tools/rls";
|
|
|
|
|
2019-08-16 18:03:38 +01:00
|
|
|
preBuild = ''
|
|
|
|
# client tests are flaky
|
|
|
|
rm tests/client.rs
|
|
|
|
'';
|
2018-09-01 14:13:10 +01:00
|
|
|
|
|
|
|
# a nightly compiler is required unless we use this cheat code.
|
|
|
|
RUSTC_BOOTSTRAP=1;
|
|
|
|
|
2020-07-25 13:00:00 +01:00
|
|
|
# As of rustc 1.45.0, these env vars are required to build rls
|
|
|
|
# (due to https://github.com/rust-lang/rust/pull/72001)
|
|
|
|
CFG_RELEASE = "${rustPlatform.rust.rustc.version}-nightly";
|
|
|
|
CFG_RELEASE_CHANNEL = "nightly";
|
|
|
|
|
2019-06-24 23:44:15 +01:00
|
|
|
# rls-rustc links to rustc_private crates
|
|
|
|
CARGO_BUILD_RUSTFLAGS = if stdenv.isDarwin then "-C rpath" else null;
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
2020-06-07 15:12:28 +01:00
|
|
|
buildInputs = [ openssh openssl curl zlib libiconv makeWrapper rustPlatform.rust.rustc.llvm ]
|
2021-01-22 11:25:31 +00:00
|
|
|
++ (lib.optionals stdenv.isDarwin [ CoreFoundation Security ]);
|
2018-09-01 14:13:10 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
2019-08-16 18:03:38 +01:00
|
|
|
|
2019-06-24 23:44:15 +01:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
$out/bin/rls --version
|
|
|
|
'';
|
|
|
|
|
2021-01-07 10:31:03 +00:00
|
|
|
RUST_SRC_PATH = rustPlatform.rustLibSrc;
|
2020-06-07 15:12:28 +01:00
|
|
|
postInstall = ''
|
2021-01-07 10:31:03 +00:00
|
|
|
wrapProgram $out/bin/rls --set-default RUST_SRC_PATH ${rustPlatform.rustLibSrc}
|
2020-06-07 15:12:28 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
meta = with lib; {
|
2018-09-01 14:13:10 +01:00
|
|
|
description = "Rust Language Server - provides information about Rust programs to IDEs and other tools";
|
2020-02-20 03:57:34 +00:00
|
|
|
homepage = "https://github.com/rust-lang/rls/";
|
2019-07-21 21:29:40 +01:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2018-09-01 14:13:10 +01:00
|
|
|
maintainers = with maintainers; [ symphorien ];
|
|
|
|
};
|
|
|
|
}
|