aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index c972857..49cfb14 100644
--- a/flake.nix
+++ b/flake.nix
@@ -16,11 +16,10 @@
dependencies = with pkgs; [
qt6.full
- qt6.qtbase
luajit
libuv
luajitPackages.libluv
- luajitPackages.luv
+ # luajitPackages.luv
# libcef
# nss
];
@@ -30,7 +29,9 @@
version = "0.0.0";
src = ./.;
- buildInputs = dependencies;
+ buildInputs = with pkgs; [
+ qt6.qtbase
+ ] ++ dependencies;
nativeBuildInputs = with pkgs; [ cmake qt6.wrapQtAppsHook pkg-config ];
};