Flake: replace c++ tooling with python tooling in devshell
This commit is contained in:
parent
34b8610432
commit
02621b79aa
1 changed files with 10 additions and 16 deletions
24
flake.nix
24
flake.nix
|
|
@ -11,22 +11,16 @@
|
|||
{
|
||||
devShells.x86_64-linux.default = pkgs.mkShell {
|
||||
name = "leek-devshell";
|
||||
packages =
|
||||
let
|
||||
kdeDeps = with pkgs.kdePackages; [
|
||||
extra-cmake-modules
|
||||
qtbase
|
||||
qtdeclarative
|
||||
kirigami
|
||||
ki18n
|
||||
kcoreaddons
|
||||
qqc2-desktop-style
|
||||
packages = with pkgs; [
|
||||
ruff
|
||||
(
|
||||
python3.withPackages (ps: with ps;[
|
||||
python-lsp-server
|
||||
pyside6
|
||||
]
|
||||
)
|
||||
)
|
||||
];
|
||||
in
|
||||
with pkgs; [
|
||||
clang-tools
|
||||
cmake
|
||||
] ++ kdeDeps;
|
||||
};
|
||||
packages.x86_64-linux = rec {
|
||||
default = leek;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue