Files
furumi-desktop/shell.nix
T
2026-08-12 01:30:57 +01:00

39 lines
562 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rustup
pkg-config
cmake
clang
mold
];
buildInputs = with pkgs; [
fontconfig
freetype
libxkbcommon
wayland
vulkan-loader
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr
];
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [
fontconfig
freetype
libxkbcommon
wayland
vulkan-loader
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr
]);
RUST_BACKTRACE = "1";
}