-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
termux-language-server bitbake-language-server pkgbuild-language-server portage-language-server requirements-language-server sublime-syntax-language-server termux-language-server
- Loading branch information
Showing
15 changed files
with
275 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
pkgs/development/python-modules/autoconf-language-server/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ mySources | ||
, python3 | ||
, lib | ||
# , setuptools-generate | ||
}: | ||
|
||
with python3.pkgs; | ||
|
||
buildPythonPackage rec { | ||
inherit (mySources.autoconf-language-server) pname version src; | ||
format = "pyproject"; | ||
disabled = pythonOlder "3.6"; | ||
propagatedBuildInputs = [ | ||
pygls | ||
platformdirs | ||
autoconf | ||
]; | ||
# nativeCheckInputs = [ | ||
# setuptools-generate | ||
# ]; | ||
pythonImportsCheck = [ | ||
"autoconf_language_server" | ||
]; | ||
|
||
meta = with lib; { | ||
homepage = "https://autoconf-language-server.readthedocs.io"; | ||
description = "autoconf language server"; | ||
license = licenses.gpl3; | ||
maintainers = with maintainers; [ Freed-Wu ]; | ||
platforms = platforms.unix; | ||
}; | ||
} |
32 changes: 32 additions & 0 deletions
32
pkgs/development/python-modules/bitbake-language-server/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ mySources | ||
, python3 | ||
, lib | ||
# , setuptools-generate | ||
}: | ||
|
||
with python3.pkgs; | ||
|
||
buildPythonPackage rec { | ||
inherit (mySources.bitbake-language-server) pname version src; | ||
format = "pyproject"; | ||
disabled = pythonOlder "3.6"; | ||
propagatedBuildInputs = [ | ||
pygls | ||
platformdirs | ||
beautifulsoup4 | ||
]; | ||
# nativeCheckInputs = [ | ||
# setuptools-generate | ||
# ]; | ||
pythonImportsCheck = [ | ||
"bitbake_language_server" | ||
]; | ||
|
||
meta = with lib; { | ||
homepage = "https://bitbake-language-server.readthedocs.io"; | ||
description = "bitbake language server"; | ||
license = licenses.gpl3; | ||
maintainers = with maintainers; [ Freed-Wu ]; | ||
platforms = platforms.unix; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
pkgs/development/python-modules/pkgbuild-language-server/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ mySources | ||
, python3 | ||
, lib | ||
, pacman | ||
# , setuptools-generate | ||
}: | ||
|
||
with python3.pkgs; | ||
|
||
buildPythonPackage rec { | ||
inherit (mySources.pkgbuild-language-server) pname version src; | ||
format = "pyproject"; | ||
disabled = pythonOlder "3.6"; | ||
propagatedBuildInputs = [ | ||
pygls | ||
platformdirs | ||
pypandoc | ||
markdown-it-py | ||
pacman | ||
# pyalpm | ||
]; | ||
# nativeCheckInputs = [ | ||
# setuptools-generate | ||
# ]; | ||
pythonImportsCheck = [ | ||
"pkgbuild_language_server" | ||
]; | ||
|
||
meta = with lib; { | ||
homepage = "https://pkgbuild-language-server.readthedocs.io"; | ||
description = "PKGBUILD language server"; | ||
license = licenses.gpl3; | ||
maintainers = with maintainers; [ Freed-Wu ]; | ||
platforms = platforms.unix; | ||
}; | ||
} |
34 changes: 34 additions & 0 deletions
34
pkgs/development/python-modules/portage-language-server/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ mySources | ||
, python3 | ||
, lib | ||
# , setuptools-generate | ||
}: | ||
|
||
with python3.pkgs; | ||
|
||
buildPythonPackage rec { | ||
inherit (mySources.portage-language-server) pname version src; | ||
format = "pyproject"; | ||
disabled = pythonOlder "3.6"; | ||
propagatedBuildInputs = [ | ||
pygls | ||
platformdirs | ||
pypandoc | ||
beautifulsoup4 | ||
# portage | ||
]; | ||
# nativeCheckInputs = [ | ||
# setuptools-generate | ||
# ]; | ||
pythonImportsCheck = [ | ||
"portage_language_server" | ||
]; | ||
|
||
meta = with lib; { | ||
homepage = "https://portage-language-server.readthedocs.io"; | ||
description = "portage language server"; | ||
license = licenses.gpl3; | ||
maintainers = with maintainers; [ Freed-Wu ]; | ||
platforms = platforms.unix; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
pkgs/development/python-modules/requirements-language-server/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ mySources | ||
, python3 | ||
, lib | ||
# , setuptools-generate | ||
}: | ||
|
||
with python3.pkgs; | ||
|
||
buildPythonPackage rec { | ||
inherit (mySources.requirements-language-server) pname version src; | ||
format = "pyproject"; | ||
disabled = pythonOlder "3.6"; | ||
propagatedBuildInputs = [ | ||
pygls | ||
platformdirs | ||
jinja2 | ||
# pip-cache | ||
pip-tools | ||
]; | ||
# nativeCheckInputs = [ | ||
# setuptools-generate | ||
# ]; | ||
pythonImportsCheck = [ | ||
"requirements_language_server" | ||
]; | ||
|
||
meta = with lib; { | ||
# pip-cache | ||
broken = true; | ||
homepage = "https://requirements-language-server.readthedocs.io"; | ||
description = "requirements.txt language server"; | ||
license = licenses.gpl3; | ||
maintainers = with maintainers; [ Freed-Wu ]; | ||
platforms = platforms.unix; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
pkgs/development/python-modules/sublime-syntax-language-server/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ mySources | ||
, python3 | ||
, lib | ||
# , setuptools-generate | ||
}: | ||
|
||
with python3.pkgs; | ||
|
||
buildPythonPackage rec { | ||
inherit (mySources.sublime-syntax-language-server) pname version src; | ||
format = "pyproject"; | ||
disabled = pythonOlder "3.6"; | ||
propagatedBuildInputs = [ | ||
pygls | ||
platformdirs | ||
beautifulsoup4 | ||
]; | ||
# nativeCheckInputs = [ | ||
# setuptools-generate | ||
# ]; | ||
pythonImportsCheck = [ | ||
"sublime-syntax_language_server" | ||
]; | ||
|
||
meta = with lib; { | ||
homepage = "https://sublime-syntax-language-server.readthedocs.io"; | ||
description = "sublime-syntax language server"; | ||
license = licenses.gpl3; | ||
maintainers = with maintainers; [ Freed-Wu ]; | ||
platforms = platforms.unix; | ||
}; | ||
} |
32 changes: 32 additions & 0 deletions
32
pkgs/development/python-modules/termux-language-server/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ mySources | ||
, python3 | ||
, lib | ||
# , setuptools-generate | ||
}: | ||
|
||
with python3.pkgs; | ||
|
||
buildPythonPackage rec { | ||
inherit (mySources.termux-language-server) pname version src; | ||
format = "pyproject"; | ||
disabled = pythonOlder "3.6"; | ||
propagatedBuildInputs = [ | ||
pygls | ||
platformdirs | ||
beautifulsoup4 | ||
]; | ||
# nativeCheckInputs = [ | ||
# setuptools-generate | ||
# ]; | ||
pythonImportsCheck = [ | ||
"termux_language_server" | ||
]; | ||
|
||
meta = with lib; { | ||
homepage = "https://termux-language-server.readthedocs.io"; | ||
description = "termux build.sh language server"; | ||
license = licenses.gpl3; | ||
maintainers = with maintainers; [ Freed-Wu ]; | ||
platforms = platforms.unix; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters