mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
66 lines
1.6 KiB
Nix
66 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, CoreServices
|
|
, cmake
|
|
, libiconv
|
|
, useMimalloc ? false
|
|
, doCheck ? true
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rust-analyzer-unwrapped";
|
|
version = "2022-04-11";
|
|
cargoSha256 = "sha256-pc8S+5g67vN9170ABiHGe1t4Go0F63UiOeLd71USYCI=";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rust-analyzer";
|
|
repo = "rust-analyzer";
|
|
rev = version;
|
|
sha256 = "sha256-miMIrDawSS1zXh6EuX03x5ACM2NTabksssSyutSNpjY=";
|
|
};
|
|
|
|
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
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|