mirror of
https://github.com/hannobraun/Fornjot
synced 2025-01-10 18:27:18 +00:00
13 lines
189 B
Nix
13 lines
189 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
let
|
|
libPath = with pkgs; lib.makeLibraryPath [
|
|
libxkbcommon
|
|
vulkan-loader
|
|
wayland
|
|
];
|
|
in
|
|
pkgs.mkShell {
|
|
LD_LIBRARY_PATH = "${libPath}";
|
|
}
|