This commit is contained in:
Aaron Honeycutt 2023-03-30 07:45:44 -06:00
parent d73d6e397a
commit 09e4163b2d
11 changed files with 0 additions and 0 deletions

0
shell/COSMIC/.gitkeep Normal file
View file

34
shell/COSMIC/shell.nix Normal file
View file

@ -0,0 +1,34 @@
# Builds now
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
appstream-glib
cargo
clang
cmake
dbus
desktop-file-utils
egl-wayland
glib
gtk4
just
llvm
llvmPackages_15.llvm
libclang
libglvnd
libinput
libpulseaudio
libxkbcommon
mesa
meson
ninja
pipewire
pkg-config
seatd
systemd
];
LIBCLANG_PATH = "${pkgs.llvmPackages_15.libclang.lib}/lib";
}