todoodoo/shell.nix

30 lines
503 B
Nix
Raw Normal View History

2024-01-04 16:36:41 +01:00
{ pkgs ? import <nixpkgs> { }, lib }:
let packages = with pkgs; [
rust-analyzer
rustfmt
clippy
clang
mold
pkg-config
libGLU
libGL
libxkbcommon
wayland
];
in
pkgs.mkShell {
# Get dependencies from the main package
inputsFrom = [ (pkgs.callPackage ./default.nix { }) ];
nativeBuildInputs = packages;
buildInputs = packages;
env = {
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib";
LD_LIBRARY_PATH = "${lib.makeLibraryPath packages}";
};
}