3cbfd2b52c
GitOrigin-RevId: 395879c28386e1abf20c7ecacd45880759548391
68 lines
1.7 KiB
Nix
68 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, CoreServices
|
|
, cmake
|
|
, libiconv
|
|
, useMimalloc ? false
|
|
, doCheck ? true
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rust-analyzer-unwrapped";
|
|
version = "2021-12-13";
|
|
cargoSha256 = "sha256-VF4pwSl3Wei7KxyQFOPj7hVX/NG2zImRLv4iN+ijAs8=";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rust-analyzer";
|
|
repo = "rust-analyzer";
|
|
rev = version;
|
|
sha256 = "sha256-xt7iDfIoaBhStgqsgttyOFF4NYPQ8jeVwDoYUwrvtrA=";
|
|
};
|
|
|
|
patches = [
|
|
# Code format and git history check require more dependencies but don't really matter for packaging.
|
|
# So just ignore them.
|
|
./ignore-git-and-rustfmt-tests.patch
|
|
|
|
# Remove when we have rustc >= 1.57.0.
|
|
./no-1-57-map-while.patch
|
|
];
|
|
|
|
buildAndTestSubdir = "crates/rust-analyzer";
|
|
|
|
nativeBuildInputs = lib.optional useMimalloc cmake;
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
CoreServices
|
|
libiconv
|
|
];
|
|
|
|
buildFeatures = lib.optional useMimalloc "mimalloc";
|
|
|
|
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 = "A modular compiler frontend for the Rust language";
|
|
homepage = "https://rust-analyzer.github.io";
|
|
license = with licenses; [ mit asl20 ];
|
|
maintainers = with maintainers; [ oxalica ];
|
|
};
|
|
}
|