tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gd: disable fontconfig when built without Xorg
Sandro Jäckel
2 years ago
ee736a3d
b608fc23
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
gd
default.nix
+2
-2
pkgs/development/libraries/gd/default.nix
···
44
45
nativeBuildInputs = [ autoconf automake pkg-config ];
46
47
-
buildInputs = [ zlib fontconfig freetype libpng libjpeg libwebp libtiff libavif ]
48
-
++ lib.optional withXorg libXpm;
49
50
outputs = [ "bin" "dev" "out" ];
51
···
44
45
nativeBuildInputs = [ autoconf automake pkg-config ];
46
47
+
buildInputs = [ zlib freetype libpng libjpeg libwebp libtiff libavif ]
48
+
++ lib.optionals withXorg [ fontconfig libXpm ];
49
50
outputs = [ "bin" "dev" "out" ];
51