tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
texlive.dvisvgm.pkgs: fix build with clang 16
Weijia Wang
2 years ago
a4222032
3f616fad
+10
-1
1 changed file
expand all
collapse all
unified
split
pkgs
tools
typesetting
tex
texlive
bin.nix
+10
-1
pkgs/tools/typesetting/tex/texlive/bin.nix
···
310
310
};
311
311
312
312
313
313
-
dvisvgm = stdenv.mkDerivation rec {
313
313
+
dvisvgm = stdenv.mkDerivation {
314
314
pname = "texlive-dvisvgm.bin";
315
315
inherit version;
316
316
317
317
inherit (common) src;
318
318
+
319
319
+
patches = [
320
320
+
(fetchpatch {
321
321
+
url = "https://github.com/mgieseki/dvisvgm/commit/629544928877362d0c6d64f20695f7df3073c5eb.patch";
322
322
+
stripLen = 1;
323
323
+
extraPrefix = "texk/dvisvgm/dvisvgm-src/";
324
324
+
hash = "sha256-CBCbc/woaFeLw7aBG/kSVYc3a5Q56zbAB64kK6mRy4g=";
325
325
+
})
326
326
+
];
318
327
319
328
preConfigure = "cd texk/dvisvgm";
320
329