Update shell.nix

This commit is contained in:
Aaron Honeycutt 2023-02-01 18:16:12 +00:00
parent 895669b500
commit 38cd489f79

View file

@ -1,10 +1,11 @@
# WIP might not work yet # Builds now
{ pkgs ? import <nixpkgs> {} }: { pkgs ? import <nixpkgs> {} }:
pkgs.mkShell { pkgs.mkShell {
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [
appstream-glib appstream-glib
cargo cargo
clang
cmake cmake
dbus dbus
desktop-file-utils desktop-file-utils
@ -13,6 +14,7 @@
gtk4 gtk4
just just
llvm llvm
llvmPackages_15.llvm
libclang libclang
libglvnd libglvnd
libinput libinput
@ -21,8 +23,12 @@
mesa mesa
meson meson
ninja ninja
pipewire
pkg-config pkg-config
seatd seatd
systemd systemd
]; ];
}
LIBCLANG_PATH = "${pkgs.llvmPackages_15.libclang.lib}/lib";
}