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

54 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, makeWrapper, fetchFromGitHub, rustPlatform
, 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";
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";
# rls-rustc links to rustc_private crates
CARGO_BUILD_RUSTFLAGS = if stdenv.isDarwin then "-C rpath" else null;
nativeBuildInputs = [ pkg-config cmake ];
buildInputs = [ openssh openssl curl zlib libiconv makeWrapper rustPlatform.rust.rustc.llvm ]
++ (lib.optionals stdenv.isDarwin [ CoreFoundation Security ]);
2018-09-01 14:13:10 +01:00
doCheck = true;
2019-08-16 18:03:38 +01:00
doInstallCheck = true;
installCheckPhase = ''
$out/bin/rls --version
'';
2021-01-07 10:31:03 +00:00
RUST_SRC_PATH = rustPlatform.rustLibSrc;
postInstall = ''
2021-01-07 10:31:03 +00:00
wrapProgram $out/bin/rls --set-default RUST_SRC_PATH ${rustPlatform.rustLibSrc}
'';
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";
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 ];
};
}