61 lines
1.6 KiB
Nix
61 lines
1.6 KiB
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices, cmake
|
|
, libiconv
|
|
, useMimalloc ? false
|
|
# FIXME: Test doesn't pass under rustc 1.52.1 due to different escaping of `'` in string.
|
|
, doCheck ? false
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rust-analyzer-unwrapped";
|
|
version = "2021-06-28";
|
|
cargoSha256 = "sha256-Xpo/VK/w6BVbHUc+m/70AE0Cag8D3fT+wosOA8Lzz2A=";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rust-analyzer";
|
|
repo = "rust-analyzer";
|
|
rev = version;
|
|
sha256 = "sha256-aWLqcCSeKRmCsETu4ri+SPQ5iB6nqaYELj0Qt3zW9/E=";
|
|
};
|
|
|
|
patches = [
|
|
# We have rustc 1.52.1 in nixpkgs.
|
|
./no-rust-1-53-features.patch
|
|
];
|
|
|
|
buildAndTestSubdir = "crates/rust-analyzer";
|
|
|
|
cargoBuildFlags = lib.optional useMimalloc "--features=mimalloc";
|
|
|
|
nativeBuildInputs = lib.optional useMimalloc cmake;
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
CoreServices
|
|
libiconv
|
|
];
|
|
|
|
RUST_ANALYZER_REV = version;
|
|
|
|
inherit doCheck;
|
|
preCheck = lib.optionalString doCheck ''
|
|
export RUST_SRC_PATH=${rustPlatform.rustLibSrc}
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
versionOutput="$($out/bin/rust-analyzer --version)"
|
|
echo "'rust-analyzer --version' returns: $versionOutput"
|
|
[[ "$versionOutput" == "rust-analyzer ${version}" ]]
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
description = "An experimental modular compiler frontend for the Rust language";
|
|
homepage = "https://github.com/rust-analyzer/rust-analyzer";
|
|
license = with licenses; [ mit asl20 ];
|
|
maintainers = with maintainers; [ oxalica ];
|
|
};
|
|
}
|