Files
furumi-desktop/shell.nix
T

40 lines
587 B
Nix
Raw Normal View History

2026-08-12 01:30:57 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
rustup
pkg-config
cmake
clang
mold
];
buildInputs = with pkgs; [
2026-08-13 16:19:15 +01:00
alsa-lib
2026-08-12 01:30:57 +01:00
fontconfig
freetype
libxkbcommon
wayland
vulkan-loader
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr
];
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [
2026-08-13 16:19:15 +01:00
alsa-lib
2026-08-12 01:30:57 +01:00
fontconfig
freetype
libxkbcommon
wayland
vulkan-loader
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr
]);
RUST_BACKTRACE = "1";
}