Unverified Commit 65e5bedc authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

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

parents 6bf084c4 7660fca7
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+32 −0
Original line number Diff line number Diff line
{
  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;
  };
}