Talk:Qt: Difference between revisions

 
 
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:


I'm missing how the [https://search.nixos.org/options?channel=24.11&show=qt.enable qt.enable] nixos options plays a role in it? Would be a great addition too this wiki page! [[User:Turbotimon|Turbotimon]] ([[User talk:Turbotimon|talk]]) 07:47, 20 March 2025 (UTC)
I'm missing how the [https://search.nixos.org/options?channel=24.11&show=qt.enable qt.enable] nixos options plays a role in it? Would be a great addition too this wiki page! [[User:Turbotimon|Turbotimon]] ([[User talk:Turbotimon|talk]]) 07:47, 20 March 2025 (UTC)
== Basic Development shell fails, qt5.full was removed  ==
The code presented as a basic development <code>shell.nix</code>:
<syntaxHighlight lang=nix>
# shell.nix
{ pkgs ? import <nixpkgs> {} }:
  pkgs.mkShell {
    buildInputs = [
      pkgs.qt5.full
      pkgs.qtcreator
    ];
}
</syntaxHighlight>
It does not work, failing with the error:
<syntaxHighlight lang=nix>
error: libsForQt5.full has been removed. Please use individual packages instead.
</syntaxHighlight>
How can we update the file to have a working yet simple shell?
Return to "Qt" page.