144 lines
2.7 KiB
Nix
144 lines
2.7 KiB
Nix
# **************************************************************************** #
|
|
# #
|
|
# ::: :::::::: #
|
|
# ld.nix :+: :+: :+: #
|
|
# +:+ +:+ +:+ #
|
|
# By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ #
|
|
# +#+#+#+#+#+ +#+ #
|
|
# Created: 2025/12/30 20:37:07 by tomoron #+# #+# #
|
|
# Updated: 2026/02/21 13:54:43 by tomoron ### ########.fr #
|
|
# #
|
|
# **************************************************************************** #
|
|
|
|
{pkgs, ... }:
|
|
|
|
{
|
|
programs.nix-ld.enable = true;
|
|
programs.nix-ld.libraries = with pkgs; [
|
|
zlib
|
|
zstd
|
|
stdenv.cc.cc
|
|
curl
|
|
openssl
|
|
attr
|
|
libssh
|
|
bzip2
|
|
libxml2
|
|
acl
|
|
libsodium
|
|
util-linux
|
|
xz
|
|
systemd
|
|
|
|
libxcomposite
|
|
libxtst
|
|
libxrandr
|
|
libxext
|
|
libx11
|
|
libxfixes
|
|
libGL
|
|
libva
|
|
pipewire
|
|
libxcb
|
|
libxdamage
|
|
libxshmfence
|
|
libxxf86vm
|
|
libelf
|
|
|
|
glib
|
|
gtk2
|
|
|
|
networkmanager
|
|
vulkan-loader
|
|
libgbm
|
|
libdrm
|
|
libxcrypt
|
|
coreutils
|
|
pciutils
|
|
zenity
|
|
|
|
libxinerama
|
|
libxcursor
|
|
libxrender
|
|
libxscrnsaver
|
|
libxi
|
|
libsm
|
|
libice
|
|
gnome2.GConf
|
|
nspr
|
|
nss
|
|
cups
|
|
libcap
|
|
SDL2
|
|
libusb1
|
|
dbus-glib
|
|
ffmpeg
|
|
libudev0-shim
|
|
|
|
# needed to run unity
|
|
gtk3
|
|
icu
|
|
libnotify
|
|
gsettings-desktop-schemas
|
|
|
|
libxt
|
|
libxmu
|
|
libogg
|
|
libvorbis
|
|
SDL
|
|
SDL2_image
|
|
glew_1_10
|
|
libidn
|
|
tbb
|
|
|
|
# Other things from runtime
|
|
flac
|
|
freeglut
|
|
libjpeg
|
|
libpng
|
|
libpng12
|
|
libsamplerate
|
|
libmikmod
|
|
libtheora
|
|
libtiff
|
|
pixman
|
|
speex
|
|
SDL_image
|
|
SDL_ttf
|
|
SDL_mixer
|
|
SDL2_ttf
|
|
SDL2_mixer
|
|
libappindicator-gtk2
|
|
libdbusmenu-gtk2
|
|
libindicator-gtk2
|
|
libcaca
|
|
libcanberra
|
|
libgcrypt
|
|
libvpx
|
|
librsvg
|
|
libxft
|
|
libvdpau
|
|
|
|
pango
|
|
cairo
|
|
atk
|
|
gdk-pixbuf
|
|
fontconfig
|
|
freetype
|
|
dbus
|
|
alsa-lib
|
|
expat
|
|
# for blender
|
|
libxkbcommon
|
|
|
|
libxcrypt-legacy # For natron
|
|
libGLU # For natron
|
|
|
|
fuse
|
|
e2fsprogs
|
|
|
|
webkitgtk_4_1
|
|
libsoup_3
|
|
];
|
|
}
|