fixed flake update, actually works : nix run builds now : devshell updated to include zshell and cli correctly

This commit is contained in:
Aram Markarov
2026-02-21 22:06:25 +01:00
parent f1bb1ec82d
commit 73cf01b3c5
3 changed files with 58 additions and 54 deletions
+2 -1
View File
@@ -22,6 +22,7 @@
ninja,
pkg-config,
pythonEnv,
zshell-cli,
}: let
version = "1.0.0";
@@ -100,7 +101,7 @@ in
qt6.qtbase
qt6.qtwayland
];
propagatedBuildInputs = runtimeDeps;
propagatedBuildInputs = runtimeDeps ++ [zshell-cli];
cmakeFlags =
[
+2 -1
View File
@@ -5,7 +5,7 @@
python3.pkgs.buildPythonApplication {
pname = "zshell-cli";
version = "0.1.0";
src = ./cli/.;
src = ../cli;
pyproject = true;
build-system = with python3.pkgs; [
@@ -16,6 +16,7 @@ python3.pkgs.buildPythonApplication {
dependencies = with python3.pkgs; [
materialyoucolor
pillow
typer
];
pythonImportsCheck = ["zshell"];