nixpkgs/pkgs/development/compilers/rust/rls/default.nix

55 lines
1.7 KiB
Nix
Raw Normal View History

{ 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";
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";
# 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 ];
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
doInstallCheck = true;
installCheckPhase = ''
$out/bin/rls --version
'';
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";
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;
};
}