Working to actually create an iced lumina

This commit is contained in:
Chris Cochrun 2024-10-30 10:34:13 -05:00
parent 0121dfa8f3
commit 084ce2fc32
8 changed files with 3928 additions and 674 deletions

View file

@ -38,7 +38,7 @@
pkg-config
];
bi = [
bi = with pkgs; [
gcc
stdenv
gnumake
@ -61,6 +61,15 @@
devShell = pkgs.mkShell {
nativeBuildInputs = nbi;
buildInputs = bi;
LD_LIBRARY_PATH = "$LD_LIBRARY_PATH:${
with pkgs;
pkgs.lib.makeLibraryPath [
pkgs.vulkan-loader
pkgs.wayland
pkgs.wayland-protocols
pkgs.libxkbcommon
]
}";
};
defaultPackage = naersk'.buildPackage {
src = ./.;