We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40434a2 commit a97ae10Copy full SHA for a97ae10
survey/default.nix
@@ -593,6 +593,15 @@ let
593
enableSystemd = false;
594
};
595
596
+ pixman = previous.pixman.overrideAttrs (old: { dontDisableStatic = true; });
597
+ fontconfig = previous.fontconfig.overrideAttrs (old: {
598
+ dontDisableStatic = true;
599
+ configureFlags = (old.configureFlags or []) ++ [
600
+ "--enable-static"
601
+ ];
602
+ });
603
+ cairo = previous.cairo.overrideAttrs (old: { dontDisableStatic = true; });
604
+
605
expat = previous.expat.overrideAttrs (old: { dontDisableStatic = true; });
606
607
mpfr = previous.mpfr.overrideAttrs (old: { dontDisableStatic = true; });
0 commit comments