Update flake.nix
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 20m35s

This commit is contained in:
Florian RICHER 2025-03-25 12:45:30 +01:00
parent 30721773c8
commit 1c24a05200
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77

View file

@ -31,7 +31,7 @@
cargo = rust;
});
renderdoc = pkgs.renderdoc.overrideAttrs(oldAttrs: {
renderdoc = pkgs.renderdoc.overrideAttrs (oldAttrs: {
cmakeFlags = oldAttrs.cmakeFlags ++ [
(pkgs.lib.cmakeBool "ENABLE_UNSUPPORTED_EXPERIMENTAL_POSSIBLY_BROKEN_WAYLAND" true)
];
@ -39,9 +39,17 @@
buildInputs = with pkgs; [ vulkan-headers vulkan-loader vulkan-validation-layers renderdoc ]
++ pkgs.lib.optionals pkgs.stdenv.hostPlatform.isLinux (with pkgs; [
libxkbcommon wayland libGL # Wayland
xorg.libX11 xorg.libXcursor xorg.libXi xorg.libxcb xorg.libxshmfence # Xorg
])
# Wayland
libxkbcommon
wayland
libGL
# Xorg
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libxcb
xorg.libxshmfence
])
++ pkgs.lib.optionals pkgs.stdenv.hostPlatform.isDarwin (with pkgs; [ darwin.apple_sdk.frameworks.SystemConfiguration ]);
nativeBuildInputs = with pkgs; [
@ -50,8 +58,8 @@
python312
];
mkCustomShell = { packages ? [] }: pkgs.mkShell {
nativeBuildInputs = with pkgs; [
mkCustomShell = { packages ? [ ] }: pkgs.mkShell {
nativeBuildInputs = [
renderdoc
(rust.override { extensions = [ "rust-src" "rust-analyzer" ]; })
] ++ nativeBuildInputs;