texlive.dvisvgm.pkgs: fix build with clang 16

+10 -1
+10 -1
pkgs/tools/typesetting/tex/texlive/bin.nix
··· 310 310 }; 311 311 312 312 313 - dvisvgm = stdenv.mkDerivation rec { 313 + dvisvgm = stdenv.mkDerivation { 314 314 pname = "texlive-dvisvgm.bin"; 315 315 inherit version; 316 316 317 317 inherit (common) src; 318 + 319 + patches = [ 320 + (fetchpatch { 321 + url = "https://github.com/mgieseki/dvisvgm/commit/629544928877362d0c6d64f20695f7df3073c5eb.patch"; 322 + stripLen = 1; 323 + extraPrefix = "texk/dvisvgm/dvisvgm-src/"; 324 + hash = "sha256-CBCbc/woaFeLw7aBG/kSVYc3a5Q56zbAB64kK6mRy4g="; 325 + }) 326 + ]; 318 327 319 328 preConfigure = "cd texk/dvisvgm"; 320 329