Skip to content

Commit

Permalink
xorg.luit: fix darwin build
Browse files Browse the repository at this point in the history
  • Loading branch information
LnL7 committed Jan 22, 2019
1 parent 88fa235 commit 8c0cc98
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pkgs/servers/x11/xorg/overrides.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ abiCompat ? null,
stdenv, makeWrapper, lib, fetchurl, fetchpatch, buildPackages,

automake, autoconf, libtool, intltool, mtdev, libevdev, libinput,
automake, autoconf, libiconv, libtool, intltool, mtdev, libevdev, libinput,
freetype, tradcpp, fontconfig, meson, ninja,
libGL, spice-protocol, zlib, libGLU, dbus, libunwind, libdrm,
mesa_noglu, udev, bootstrap_cmds, bison, flex, clangStdenv, autoreconfHook,
Expand Down Expand Up @@ -143,10 +143,12 @@ self: super:
outputs = [ "out" "dev" "devdoc" ];
});

# See https://bugs.freedesktop.org/show_bug.cgi?id=47792
# Once the bug is fixed upstream, this can be removed.
luit = super.luit.overrideAttrs (attrs: {
# See https://bugs.freedesktop.org/show_bug.cgi?id=47792
# Once the bug is fixed upstream, this can be removed.
configureFlags = [ "--disable-selective-werror" ];

buildInputs = attrs.buildInputs ++ [libiconv];
});

libICE = super.libICE.overrideAttrs (attrs: {
Expand Down

0 comments on commit 8c0cc98

Please sign in to comment.