From 9216a5a2a85af3388044d214c4347606a633a77b Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Wed, 11 Sep 2024 12:43:08 +0200 Subject: [PATCH] update flake --- flake.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 886c77e..dfa38e7 100644 --- a/flake.nix +++ b/flake.nix @@ -23,7 +23,7 @@ devShells.default = pkgs.mkShell.override { stdenv = pkgs.stdenvAdapters.useMoldLinker pkgs.clangStdenv; } rec { - buildInputs = with pkgs; [ + packages = with pkgs; [ (fenix.packages.${system}.complete.withComponents [ "cargo" "clippy" @@ -35,9 +35,10 @@ lldb cmake pkg-config - openssl - xorg.libxcb - libxkbcommon + ]; + buildInputs = with pkgs; [ + libGL + glslang vulkan-tools vulkan-headers vulkan-loader @@ -45,9 +46,11 @@ xorg.libXcursor xorg.libXi xorg.libXrandr + xorg.libxcb + libxkbcommon wayland - glslang udev + openssl ]; LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs; RUSTFLAGS = "-Zthreads=8";