From 0b416310fcc0959a06e8f2e0121174a7f4fd4678 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 25 Apr 2013 16:57:36 +0200 Subject: [PATCH] xorg-server: clear the bogus font paths --- pkgs/servers/x11/xorg/overrides.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index b78e669cf9a6..1fadab2cc3d6 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -167,7 +167,11 @@ in }; xorgserver = with xorg; attrs: attrs // { - configureFlags = "--enable-xcsecurity"; # enable SECURITY extension + configureFlags = [ + "--enable-xcsecurity" # enable SECURITY extension + "--with-default-font-path= " # there were only paths containing "${prefix}", + # and there are no fonts in this package anyway + ]; patches = [./xorgserver-dri-path.patch ./xorgserver-xkbcomp-path.patch]; buildInputs = attrs.buildInputs ++ [ xtrans ]; propagatedBuildInputs =