Fix maven and flake conf

This commit is contained in:
Florian RICHER 2025-05-19 22:54:42 +02:00
parent a07c55cf0f
commit cb0fa04383
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
8 changed files with 292 additions and 107 deletions

View file

@ -10,10 +10,15 @@
flake-utils.lib.eachSystem flake-utils.lib.allSystems (system:
let
pkgs = import nixpkgs { inherit system; };
buildInputs = with pkgs; [ vulkan-headers vulkan-loader vulkan-validation-layers renderdoc ];
in
{
devShells = {
default = pkgs.mkShell {
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
VK_LAYER_PATH = "${pkgs.vulkan-validation-layers}/share/vulkan/explicit_layer.d:${pkgs.renderdoc}/share/vulkan/implicit_layer.d";
packages = with pkgs; [
jdk22
maven