aboutsummaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorSulfurNitride <SulfurNitride@users.noreply.github.com>2026-05-01 11:04:28 -0500
committerSulfurNitride <SulfurNitride@users.noreply.github.com>2026-05-01 11:04:28 -0500
commit95b1cb12c3f5604c865603e951646098f7cd593b (patch)
tree158fb3b1bdb089be64cf5aaa7ae2f87cf9b89c3a /nix
parenta6a4bcc8fcd7cb928d4863d2887ab7e8d728f24c (diff)
nix: add Qt6NetworkAuth to mobase shell
PR #2374 (Nexus OAuth) added Qt6NetworkAuth dependency, breaking the NixOS mobase build. Add qtnetworkauth to buildInputs and CMAKE_PREFIX_PATH. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'nix')
-rw-r--r--nix/mobase-shell.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/mobase-shell.nix b/nix/mobase-shell.nix
index ae5ad91..d400c01 100644
--- a/nix/mobase-shell.nix
+++ b/nix/mobase-shell.nix
@@ -25,6 +25,7 @@ pkgs.mkShell {
qt6.qtwebsockets
qt6.qtsvg
qt6.qtwayland
+ qt6.qtnetworkauth
# Python (withPackages for runtime, base python313 for dev headers/libpython)
pythonWithPkgs
@@ -60,6 +61,6 @@ pkgs.mkShell {
fi
export PATH="$PWD/.nix-venv/bin:$PATH"
export PYTHONPATH="$PWD/.nix-venv/lib/python3.13/site-packages:$PYTHONPATH"
- export CMAKE_PREFIX_PATH="${pkgs.qt6.qtbase}:${pkgs.qt6.qtwebengine}:${pkgs.qt6.qtwebsockets}:${pkgs.qt6.qtsvg}:$CMAKE_PREFIX_PATH"
+ export CMAKE_PREFIX_PATH="${pkgs.qt6.qtbase}:${pkgs.qt6.qtwebengine}:${pkgs.qt6.qtwebsockets}:${pkgs.qt6.qtsvg}:${pkgs.qt6.qtnetworkauth}:$CMAKE_PREFIX_PATH"
'';
}