Skip to content

Commit c7ac4e9

Browse files
committed
Simplified flake.nix a little
1 parent 0581b33 commit c7ac4e9

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

flake.nix

+9-9
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
let pkgs = nixpkgs.legacyPackages.${system};
1212
in {
1313
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
14+
buildInputs = with pkgs; [
15+
ccache # modules.cpp.compilerWrapper:ccache
16+
gdb
17+
lld # modules.cpp.linkerVariant:lld
18+
pkg-config
19+
qbs # More recent than shipping with QtCreator
20+
qt6.full
21+
qtcreator # IDE
22+
zlib
2323
];
2424

2525
# Avoid warning spam due to trying to enable hardening in debug builds

0 commit comments

Comments
 (0)