Skip to content

Commit

Permalink
fix: correct wayland deps for Nix
Browse files Browse the repository at this point in the history
  • Loading branch information
brynblack committed Jun 30, 2024
1 parent fe7e929 commit d16b15f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,18 @@
};
in
{
devShells.default = with pkgs; mkShell {
devShells.default = with pkgs; mkShell rec {
nativeBuildInputs = [
pkg-config
openssl
sqlite
];
buildInputs = [
libxkbcommon
libGL
wayland
];
LD_LIBRARY_PATH = "${lib.makeLibraryPath buildInputs}";
};
});
}

0 comments on commit d16b15f

Please sign in to comment.