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
26
flake.nix
26
flake.nix
|
|
@ -11,22 +11,16 @@
|
||||||
{
|
{
|
||||||
devShells.x86_64-linux.default = pkgs.mkShell {
|
devShells.x86_64-linux.default = pkgs.mkShell {
|
||||||
name = "leek-devshell";
|
name = "leek-devshell";
|
||||||
packages =
|
packages = with pkgs; [
|
||||||
let
|
ruff
|
||||||
kdeDeps = with pkgs.kdePackages; [
|
(
|
||||||
extra-cmake-modules
|
python3.withPackages (ps: with ps;[
|
||||||
qtbase
|
python-lsp-server
|
||||||
qtdeclarative
|
pyside6
|
||||||
kirigami
|
]
|
||||||
ki18n
|
)
|
||||||
kcoreaddons
|
)
|
||||||
qqc2-desktop-style
|
];
|
||||||
];
|
|
||||||
in
|
|
||||||
with pkgs; [
|
|
||||||
clang-tools
|
|
||||||
cmake
|
|
||||||
] ++ kdeDeps;
|
|
||||||
};
|
};
|
||||||
packages.x86_64-linux = rec {
|
packages.x86_64-linux = rec {
|
||||||
default = leek;
|
default = leek;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue