Nix-ld: Difference between revisions
m link to pages |
TobiasBora (talk | contribs) add dependencies for zxlive |
||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 166: | Line 166: | ||
# for blender | # for blender | ||
libxkbcommon | libxkbcommon | ||
libxcrypt-legacy # For natron | |||
libGLU # For natron | |||
# Appimages need fuse, e.g. https://musescore.org/fr/download/musescore-x86_64.AppImage | |||
fuse | |||
e2fsprogs | |||
# darktable nightly AppImage https://github.com/darktable-org/darktable/releases | |||
gmp | |||
# RapidRaw | |||
harfbuzz | |||
libgpg-error | |||
# https://github.com/xournalpp/xournalpp/releases/download/v1.2.4/xournalpp-1.2.4-x86_64.AppImage | |||
fribidi | |||
librsvg | |||
# https://github.com/nix-community/nix-ld/issues/95#issuecomment-3041993870 | |||
(runCommand "librsvg" {} '' | |||
mkdir -p $out/lib/gdk-pixbuf-2.0/2.10.0/loaders | |||
ln -s "${librsvg}/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader_svg.so" "$out/lib/libpixbufloader-svg.so" | |||
'') | |||
# pdfmastereditor | |||
sane-backends | |||
pkcs11helper | |||
# Qt6 requires this (e.g. used in zxlive) | |||
libpulseaudio | |||
krb5 | |||
libxcb-cursor | |||
xorg.xcbutilwm | |||
xorg.xcbutil | |||
xorg.xcbutilimage | |||
xorg.xcbutilkeysyms | |||
xorg.xcbutilrenderutil | |||
]; | ]; | ||
}; | }; | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Once activated (you may need to reboot the first time you enable nix-ld to make sure the environment variables are properly set), I was for instance able to run blender 4.4.3 using the [https://download.blender.org/release/Blender4.4/blender-4.4.3-linux-x64.tar.xz unpatched binary provided by the blender foundation], and develop npm projects with <code>npm install</code> like in any normal linux distribution. | Once activated (you may need to reboot the first time you enable nix-ld to make sure the environment variables are properly set), I was for instance able to run blender 4.4.3 using the [https://download.blender.org/release/Blender4.4/blender-4.4.3-linux-x64.tar.xz unpatched binary provided by the blender foundation], and develop npm projects with <code>npm install</code> like in any normal linux distribution. | ||