flake: add clang-tools to devShell (#6916)

This commit is contained in:
VESSE Léo 2024-07-17 22:30:02 +02:00 committed by GitHub
parent 293e687389
commit 300228b503
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -90,9 +90,13 @@
stdenv = pkgsFor.${system}.gcc13Stdenv;
} {
name = "hyprland-shell";
nativeBuildInputs = with pkgsFor.${system}; [expat libxml2];
nativeBuildInputs = with pkgsFor.${system}; [
expat
libxml2
];
hardeningDisable = ["fortify"];
inputsFrom = [pkgsFor.${system}.hyprland];
packages = [pkgsFor.${system}.clang-tools];
};
});