hboard/shell.nix
2024-08-25 04:05:07 +07:00

9 lines
241 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell rec {
name = "shell-rust";
nativeBuildInputs = with pkgs; [ rustc cargo pkg-config ];
buildInputs = with pkgs; [ libxkbcommon ];
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
}