50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
rustPlatform,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "codebook";
|
|
version = "0.3.42";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "blopker";
|
|
repo = "codebook";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-L+OVR7JHs9qFh48ET2eugl4zZIpbM4DBtoWsHKzKbks=";
|
|
};
|
|
|
|
buildAndTestSubdir = "crates/codebook-lsp";
|
|
cargoHash = "sha256-+OmaZkae5b5TKfMwlYGijJTD5gGS/YuoQOvKKfKuipk=";
|
|
|
|
env = {
|
|
CARGO_PROFILE_RELEASE_LTO = "fat";
|
|
CARGO_PROFILE_RELEASE_CODEGEN_UNITS = "1";
|
|
};
|
|
|
|
# Integration tests require internet access for dictionaries
|
|
doCheck = false;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
nativeInstallCheckInputs = [
|
|
versionCheckHook
|
|
];
|
|
doInstallCheck = true;
|
|
|
|
meta = {
|
|
description = "Unholy spellchecker for code";
|
|
homepage = "https://github.com/blopker/codebook";
|
|
changelog = "https://github.com/blopker/codebook/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
jpds
|
|
];
|
|
mainProgram = "codebook-lsp";
|
|
platforms = with lib.platforms; unix ++ windows;
|
|
};
|
|
})
|