This commit is contained in:
2026-01-03 23:27:14 +01:00
commit 61486008f6
11 changed files with 412 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{ lib, stdenv, cmake, ninja, pkg-config, qt6 }:
stdenv.mkDerivation {
pname = "qt-example";
version = "1.0";
src = ./qt-example;
nativeBuildInputs = [
cmake
ninja
pkg-config
qt6.wrapQtAppsHook
];
buildInputs = [
qt6.qtbase
qt6.qtdeclarative
qt6.qtwayland
];
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release"
];
}