# Qt {#sec-language-qt} Writing Nix expressions for Qt libraries and applications is largely similar as for other C++ software. This section assumes some knowledge of the latter. There are two problems that the Nixpkgs Qt infrastructure addresses, which are not shared by other C++ software: 1. There are usually multiple supported versions of Qt in Nixpkgs. All of a package's dependencies must be built with the same version of Qt. This is similar to the version constraints imposed on interpreted languages like Python. 2. Qt makes extensive use of runtime dependency detection. Runtime dependencies are made into build dependencies through wrappers. ## Nix expression for a Qt package (default.nix) {#qt-default-nix} ```{=docbook} { stdenv, lib, qtbase, wrapQtAppsHook }: stdenv.mkDerivation { pname = "myapp"; version = "1.0"; buildInputs = [ qtbase ]; nativeBuildInputs = [ wrapQtAppsHook ]; } Import Qt modules directly, that is: qtbase, qtdeclarative, etc. Do not import Qt package sets such as qt5 because the Qt versions of dependencies may not be coherent, causing build and runtime failures.