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
40 lines
913 B
Nix
40 lines
913 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "autotools-language-server";
|
|
version = "0.0.22";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Freed-Wu";
|
|
repo = "autotools-language-server";
|
|
tag = version;
|
|
hash = "sha256-PvaEcdvUE8QpxKuW65RL8SgDl/RM/C3HTEK3v+YA73c=";
|
|
};
|
|
|
|
build-system = [
|
|
python3.pkgs.setuptools-generate
|
|
python3.pkgs.setuptools-scm
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
tree-sitter-make
|
|
lsp-tree-sitter
|
|
];
|
|
nativeCheckInputs = [
|
|
python3.pkgs.pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Autotools language server, support configure.ac, Makefile.am, Makefile";
|
|
homepage = "https://github.com/Freed-Wu/autotools-language-server";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ doronbehar ];
|
|
mainProgram = "autotools-language-server";
|
|
};
|
|
}
|