mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-22 09:12:13 -05:00
Flake/devshell: Add more useful packages
The list now includes: - clang-tools: For clangd and clang-format - pre-commit: For the pre-commit hooks - prettier: For web-related formatting
This commit is contained in:
parent
589538ec8f
commit
fc956080e2
Notes:
github-actions[bot]
2024-12-28 00:14:22 +00:00
Author: https://github.com/iniw 🔰 Commit: https://github.com/LadybirdBrowser/ladybird/commit/fc956080e25 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3052 Reviewed-by: https://github.com/ADKaster ✅
1 changed files with 13 additions and 6 deletions
11
shell.nix
11
shell.nix
|
@ -15,12 +15,19 @@ pkgs.mkShell {
|
|||
}))
|
||||
];
|
||||
|
||||
packages = with pkgs.qt6Packages; [
|
||||
packages =
|
||||
with pkgs;
|
||||
with pkgs.qt6Packages;
|
||||
with pkgs.nodePackages;
|
||||
[
|
||||
qtbase.dev
|
||||
qttools
|
||||
qtwayland.dev
|
||||
|
||||
pkgs.ccache
|
||||
ccache
|
||||
clang-tools
|
||||
pre-commit
|
||||
prettier
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
|
|
Loading…
Reference in a new issue