activate-linux-wayland/shell.nix

13 lines
214 B
Nix
Raw Normal View History

2022-05-17 12:36:03 +02:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
shellHook = ''export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${pkgs.lib.makeLibraryPath [
wayland
]}"'';
buildInputs = [
pkgconfig
wayland
];
}