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

46 lines
1.3 KiB
Nix
Raw Normal View History

2018-09-01 14:13:10 +01:00
{ stdenv, fetchFromGitHub, rustPlatform
2019-07-21 21:29:40 +01:00
, openssh, openssl, pkgconfig, cmake, zlib, curl, libiconv
, CoreFoundation, Security }:
2018-09-01 14:13:10 +01:00
rustPlatform.buildRustPackage rec {
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";
preBuild = ''
pushd src/tools/rls
# 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;
# rls-rustc links to rustc_private crates
CARGO_BUILD_RUSTFLAGS = if stdenv.isDarwin then "-C rpath" else null;
2018-09-01 14:13:10 +01:00
nativeBuildInputs = [ pkgconfig cmake ];
2019-07-21 21:29:40 +01:00
buildInputs = [ openssh openssl curl zlib libiconv ]
++ (stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Security ]);
2018-09-01 14:13:10 +01:00
doCheck = true;
2019-08-16 18:03:38 +01:00
preInstall = "popd";
2018-09-01 14:13:10 +01:00
doInstallCheck = true;
installCheckPhase = ''
$out/bin/rls --version
'';
2018-09-01 14:13:10 +01: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 21:29:40 +01:00
license = with licenses; [ asl20 /* or */ mit ];
2018-09-01 14:13:10 +01:00
maintainers = with maintainers; [ symphorien ];
platforms = platforms.all;
};
}