2025-05-21 13:23:32 -04:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
programs.nix-ld.enable = true;
|
|
|
|
programs.nix-ld.libraries = with pkgs; [
|
2025-06-18 20:48:38 -04:00
|
|
|
zlib.out
|
2025-05-21 13:23:32 -04:00
|
|
|
zstd
|
|
|
|
stdenv.cc.cc
|
|
|
|
curlFull
|
|
|
|
openssl.out
|
|
|
|
attr
|
|
|
|
libssh
|
|
|
|
libxcrypt.out
|
|
|
|
bzip2
|
|
|
|
libxml2
|
|
|
|
acl
|
|
|
|
libsodium
|
|
|
|
util-linux
|
|
|
|
xz
|
|
|
|
systemd
|
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
gnutls
|
|
|
|
util-linux
|
|
|
|
libGL.dev
|
|
|
|
psutils
|
|
|
|
egl-wayland
|
|
|
|
eglexternalplatform
|
|
|
|
glfw-wayland
|
|
|
|
glfw
|
|
|
|
libGL.dev
|
|
|
|
libuv.out
|
|
|
|
libressl.out
|
|
|
|
libudev-zero.out
|
|
|
|
mesa.out
|
|
|
|
gst_all_1.gstreamer
|
|
|
|
gst_all_1.gst-plugins-base
|
2025-06-19 16:23:50 -04:00
|
|
|
gst_all_1.gst-plugins-bad
|
|
|
|
gst_all_1.gst-plugins-good
|
|
|
|
gst_all_1.gst-plugins-ugly
|
|
|
|
gst_all_1.gst-editing-services.out
|
|
|
|
gst_all_1.gstreamermm.dev
|
|
|
|
gst_all_1.gst-rtsp-server.out
|
|
|
|
gst_all_1.gst-devtools.out
|
|
|
|
|
2025-05-21 13:23:32 -04:00
|
|
|
glib
|
|
|
|
alsa-lib
|
2025-05-23 12:51:48 -04:00
|
|
|
jdk
|
|
|
|
vulkan-loader
|
2025-06-17 23:32:56 -04:00
|
|
|
libffi.out
|
|
|
|
gcc.out
|
2025-06-19 16:23:50 -04:00
|
|
|
libgcc.lib
|
|
|
|
stdenv.cc.cc.lib
|
2025-05-21 13:23:32 -04:00
|
|
|
];
|
|
|
|
}
|