We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0581b33 commit c7ac4e9Copy full SHA for c7ac4e9
flake.nix
@@ -11,15 +11,15 @@
11
let pkgs = nixpkgs.legacyPackages.${system};
12
in {
13
devShell = pkgs.mkShell {
14
- buildInputs = [
15
- pkgs.ccache # modules.cpp.compilerWrapper:ccache
16
- pkgs.gdb
17
- pkgs.lld # modules.cpp.linkerVariant:lld
18
- pkgs.pkg-config
19
- pkgs.qbs # More recent than shipping with QtCreator
20
- pkgs.qt6.full
21
- pkgs.qtcreator # IDE
22
- pkgs.zlib
+ buildInputs = with pkgs; [
+ ccache # modules.cpp.compilerWrapper:ccache
+ gdb
+ lld # modules.cpp.linkerVariant:lld
+ pkg-config
+ qbs # More recent than shipping with QtCreator
+ qt6.full
+ qtcreator # IDE
+ zlib
23
];
24
25
# Avoid warning spam due to trying to enable hardening in debug builds
0 commit comments