Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
900 B
Nix
32 lines
900 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
withCitation ? true,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "simple-completion-language-server";
|
|
version = "0-unstable-2025-07-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "estin";
|
|
repo = "simple-completion-language-server";
|
|
rev = "cc57b08ebc68805266beacb512a453e16f86bf17";
|
|
hash = "sha256-TiVzgwsP1KZxTxW71eQyp1bkDnyTaMJdBYmkdvl1RX0=";
|
|
};
|
|
|
|
cargoHash = "sha256-M+kjdT9X69kdZcBHC2ChR7WGgxtcUaU8woE2bqhu8IM=";
|
|
|
|
buildFeatures = lib.optional withCitation [ "citation" ];
|
|
|
|
meta = {
|
|
description = "Language server to enable word completion and snippets for Helix editor";
|
|
homepage = "https://github.com/estin/simple-completion-language-server";
|
|
license = [ lib.licenses.mit ];
|
|
maintainers = [ lib.maintainers.kpbaks ];
|
|
mainProgram = "simple-completion-language-server";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|