# SPDX-License-Identifier: MIT # SPDX-FileCopyrightText: 2025 iced contributors # SPDX-FileCopyrightText: 2026 Johannes Süllner # based on https://github.com/iced-rs/iced/blob/master/DEPENDENCIES.md # last updated 2026-01-11 { pkgs ? import { } }: let dlopenLibraries = with pkgs; [ libxkbcommon # GPU backend vulkan-loader # Window system wayland ]; in pkgs.mkShell { nativeBuildInputs = with pkgs; [ cargo lldb rustfmt ]; env.RUSTFLAGS = "-C link-arg=-Wl,-rpath,${pkgs.lib.makeLibraryPath dlopenLibraries}"; }