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