use unpatched qt for dev tooling (fmt, lint, devshell)

This commit is contained in:
Damocles 2026-04-20 20:59:06 +02:00
parent e85cd40266
commit 06fb97bc23
2 changed files with 38 additions and 24 deletions

View file

@ -1,4 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ cmake qt6.qtbase qt6.wrapQtAppsHook wlr-randr ];
nativeBuildInputs = with pkgs; [
cmake
qt6.qtbase
qt6.wrapQtAppsHook
wlr-randr
];
}