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 f7def68 commit 065fec4Copy full SHA for 065fec4
pkgs/development/libraries/fontconfig/default.nix
@@ -1,4 +1,5 @@
1
{ lib, stdenv
2
+, fetchpatch
3
, substituteAll
4
, fetchurl
5
, pkg-config
@@ -21,6 +22,14 @@ stdenv.mkDerivation rec {
21
22
sha256 = "0g004r0bkkqz00mpm3svnnxn7d83158q0yb9ggxryizxfg5m5w55";
23
};
24
25
+ patches = [
26
+ # Fix font style detection
27
+ (fetchpatch {
28
+ url = "https://gitlab.freedesktop.org/fontconfig/fontconfig/-/commit/92fbf14b0d7c4737ffe1e8326b7ab8ffae5548c3.patch";
29
+ sha256 = "1wmyax2151hg3m11q61mv25k45zk2w3xapb4p1r6wzk91zjlsgyr";
30
+ })
31
+ ];
32
+
33
outputs = [ "bin" "dev" "lib" "out" ]; # $out contains all the config
34
35
nativeBuildInputs = [
0 commit comments