bitbake-language-server: 0.0.8 -> 0.0.14

Release: https://github.com/Freed-Wu/bitbake-language-server/releases/tag/0.0.14

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit is contained in:
Otavio Salvador 2024-04-11 11:57:53 +00:00
parent fea06555b6
commit 3a8eaa5405

View File

@ -1,19 +1,20 @@
{ lib { lib
, nix-update-script , nix-update-script
, python3 , python3
, oelint-adv
, fetchFromGitHub , fetchFromGitHub
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "bitbake-language-server"; pname = "bitbake-language-server";
version = "0.0.8"; version = "0.0.14";
format = "pyproject"; format = "pyproject";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Freed-Wu"; owner = "Freed-Wu";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-WJpa2LP95vrJG/OjiLSx8zEPO5ZOw66M5s3r2dufQJA="; hash = "sha256-aGj9lW420A+iTQWSCdIITAJj3p89VUkPvdhQ/0M6uXo=";
}; };
nativeBuildInputs = with python3.pkgs; [ nativeBuildInputs = with python3.pkgs; [
@ -22,18 +23,17 @@ python3.pkgs.buildPythonApplication rec {
]; ];
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with python3.pkgs; [
oelint-parser
pygls pygls
]; ] ++ [ oelint-adv ];
passthru.updateScript = nix-update-script { }; passthru.updateScript = nix-update-script { };
meta = with lib; { meta = {
description = "Language server for bitbake"; description = "Language server for bitbake";
mainProgram = "bitbake-language-server"; mainProgram = "bitbake-language-server";
homepage = "https://github.com/Freed-Wu/bitbake-language-server"; homepage = "https://github.com/Freed-Wu/bitbake-language-server";
changelog = "https://github.com/Freed-Wu/bitbake-language-server/releases/tag/v${version}"; changelog = "https://github.com/Freed-Wu/bitbake-language-server/releases/tag/${version}";
license = licenses.gpl3; license = lib.licenses.gpl3;
maintainers = with maintainers; [ otavio ]; maintainers = [ lib.maintainers.otavio ];
}; };
} }