this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix path issues

+18
+18
nix/docker-image.nix
··· 49 49 gmp 50 50 51 51 # WeasyPrint / PDF rendering runtime 52 + glib 52 53 pango 53 54 harfbuzz 54 55 fontconfig ··· 200 201 201 202 # PATH: venv first, then nix profile bins, then standard paths 202 203 "PATH=/app/.venv/bin:/bin:/usr/bin:/sbin:/usr/sbin" 204 + 205 + # LD_LIBRARY_PATH — shared libraries live in Nix store paths; 206 + # WeasyPrint (cffi.dlopen) and other native extensions need this 207 + # to locate libgobject, libpango, libfontconfig, etc. 208 + "LD_LIBRARY_PATH=${pkgs.lib.makeLibraryPath [ 209 + pkgs.glib 210 + pkgs.pango 211 + pkgs.harfbuzz 212 + pkgs.fontconfig 213 + pkgs.freetype 214 + pkgs.libffi 215 + pkgs.libpq 216 + pkgs.gmp 217 + pkgs.libjpeg 218 + pkgs.openjpeg 219 + pkgs.zlib 220 + ]}" 203 221 204 222 # TLS certificates — required for any outbound HTTPS (boto3, requests, etc.) 205 223 "SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"