trisquel-icecat/icecat/third_party/rust/khronos-egl/shell-wayland.nix

11 lines
166 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.gcc
pkgs.libGL
pkgs.pkg-config
pkgs.wayland
];
LD_LIBRARY_PATH="${pkgs.libGL}/lib";
}