From eb390814d827287d4cc86b9104c35dd2b3a3f100 Mon Sep 17 00:00:00 2001 From: oluceps Date: Thu, 5 Jan 2023 21:55:05 +0800 Subject: [PATCH] Fix build fail on nix flake. This should fix nix build fail caused by introduced new qt module. Signed-off-by: oluceps --- nix/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/default.nix b/nix/default.nix index 19136cad..5053eaf8 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -17,7 +17,7 @@ , msaClientID ? "" , extraJDKs ? [ ] , extra-cmake-modules - +, qtcharts # flake , self , version @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { src = lib.cleanSource self; nativeBuildInputs = [ cmake extra-cmake-modules ninja jdk ghc_filesystem file wrapQtAppsHook ]; - buildInputs = [ qtbase quazip zlib ]; + buildInputs = [ qtbase quazip zlib qtcharts ]; dontWrapQtApps = true;