0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

simple-completion-language-server: init at 0-unstable-2025-01-31 (#378338)

This commit is contained in:
Arne Keller 2025-02-28 15:29:00 +01:00 committed by GitHub
commit 65e5bedcf9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 38 additions and 0 deletions

View file

@ -12615,6 +12615,12 @@
githubId = 1903418;
name = "Kovacsics Robert";
};
kpbaks = {
email = "kristoffer.pbs@gmail.com";
github = "kpbaks";
githubId = 57013304;
name = "Kristoffer Plagborg Bak Sørensen";
};
kpcyrd = {
email = "git@rxv.cc";
github = "kpcyrd";

View file

@ -0,0 +1,32 @@
{
lib,
fetchFromGitHub,
rustPlatform,
withCitation ? true,
}:
rustPlatform.buildRustPackage {
pname = "simple-completion-language-server";
version = "0-unstable-2025-01-31";
src = fetchFromGitHub {
owner = "estin";
repo = "simple-completion-language-server";
rev = "f6ab8e8374d046e5c6ff36cc9804dfc708b56c02";
hash = "sha256-ot2h85cn2ID7GAOSJvIeKcC3uUYzS3TWQ4Ql6MzPG50=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-L0Xa+B5hMkVKdOD0YAyGErbgAY68CHzzeP0CLew0BMs=";
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;
};
}