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

48 lines
1.4 KiB
Nix
Raw Normal View History

2018-09-01 15:13:10 +02:00
{ stdenv, 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
rustPlatform.buildRustPackage rec {
2019-07-21 22:29:40 +02:00
pname = "rls";
2018-09-01 15:13:10 +02:00
# with rust 1.x you can only build rls version 1.x.y
2019-07-28 07:35:44 +02:00
version = "1.36.0";
2018-09-01 15:13:10 +02:00
src = fetchFromGitHub {
owner = "rust-lang";
2019-07-21 22:29:40 +02:00
repo = pname;
rev = version;
2019-07-28 07:35:44 +02:00
sha256 = "1mclv0admxv48pndyqghxc4nf1amhbd700cgrzjshf9jrnffxmrn";
2018-09-01 15:13:10 +02:00
};
2019-07-28 07:35:44 +02:00
cargoSha256 = "1yli9540510xmzqnzfi3p6rh23bjqsviflqw95a0fawf2rnj8sin";
2018-09-01 15:13:10 +02: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 15:13:10 +02:00
nativeBuildInputs = [ pkgconfig cmake ];
2019-07-21 22:29:40 +02:00
buildInputs = [ openssh openssl curl zlib libiconv ]
++ (stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Security ]);
2018-09-01 15:13:10 +02:00
doCheck = true;
2019-07-21 22:29:40 +02:00
preCheck = ''
2019-04-24 21:37:26 +02:00
# client tests are flaky
rm tests/client.rs
2018-09-01 15:13:10 +02:00
'';
doInstallCheck = true;
installCheckPhase = ''
$out/bin/rls --version
'';
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;
};
}