mirror of
https://codeberg.org/icewind/mill-scale.git
synced 2026-06-03 18:04:09 +02:00
autodep env variables
This commit is contained in:
parent
c8bab3321a
commit
6055ccecb6
4 changed files with 75 additions and 37 deletions
15
autodeps/deps.nix
Normal file
15
autodeps/deps.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"openssl-sys" = { build = [ "openssl" ]; };
|
||||
"libudev-sys" = { build = [ "eudev" ]; };
|
||||
"libdbus-sys" = { build = [ "dbus" ]; };
|
||||
"expat-sys" = { native = [ "cmake" ]; };
|
||||
"servo-fontconfig-sys" = { build = [ "fontconfig" ]; };
|
||||
"x11-dl" = { build = [ "xorg.libX11" "xorg.libXcursor" "xorg.libXrandr" "xorg.libXi" ]; };
|
||||
"glutin_glx_sys" = {
|
||||
build = [ "libGL" ];
|
||||
env = pkgs: {
|
||||
LD_LIBRARY_PATH = with pkgs; "/run/opengl-driver/lib/:${lib.makeLibraryPath ([libGL libGLU])}";
|
||||
};
|
||||
};
|
||||
"wayland-egl" = { build = [ "egl-wayland" ]; };
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue