mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
0e49168cc6
Fixes failing build on master.
51 lines
1.5 KiB
Nix
51 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper, substituteAll, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "racer";
|
|
version = "2.1.27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "racer-rust";
|
|
repo = "racer";
|
|
rev = "v${version}";
|
|
sha256 = "1ajj515ck5n0mzig77xnq1qgb2s4gf6ahgd5mab91406jvij9qf3";
|
|
};
|
|
|
|
cargoSha256 = "0ki5j5gh59c92a0w43kzljpiamv2jvyk4m2w8qldfyl5kaa40dxb";
|
|
|
|
buildInputs = [ makeWrapper ]
|
|
++ stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
# a nightly compiler is required unless we use this cheat code.
|
|
RUSTC_BOOTSTRAP=1;
|
|
|
|
RUST_SRC_PATH = rustPlatform.rustcSrc;
|
|
postInstall = ''
|
|
wrapProgram $out/bin/racer --set-default RUST_SRC_PATH $rustcSrc
|
|
'';
|
|
|
|
checkPhase = ''
|
|
cargo test -- \
|
|
--skip nameres::test_do_file_search_std \
|
|
--skip util::test_get_rust_src_path_rustup_ok \
|
|
--skip util::test_get_rust_src_path_not_rust_source_tree \
|
|
--skip extern --skip completes_pub_fn --skip find_crate_doc \
|
|
--skip follows_use_local_package --skip follows_use_for_reexport \
|
|
--skip follows_rand_crate --skip get_completion_in_example_dir \
|
|
--skip test_resolve_global_path_in_modules
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
$out/bin/racer --version
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A utility intended to provide Rust code completion for editors and IDEs";
|
|
homepage = https://github.com/racer-rust/racer;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jagajaga ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|