3
0
Fork 0
forked from mirrors/nixpkgs

xorg.luit: fix darwin build

This commit is contained in:
Daiderd Jordan 2019-01-22 21:44:23 +01:00
parent 88fa235e63
commit 8c0cc98600
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -1,7 +1,7 @@
{ abiCompat ? null, { abiCompat ? null,
stdenv, makeWrapper, lib, fetchurl, fetchpatch, buildPackages, 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, freetype, tradcpp, fontconfig, meson, ninja,
libGL, spice-protocol, zlib, libGLU, dbus, libunwind, libdrm, libGL, spice-protocol, zlib, libGLU, dbus, libunwind, libdrm,
mesa_noglu, udev, bootstrap_cmds, bison, flex, clangStdenv, autoreconfHook, mesa_noglu, udev, bootstrap_cmds, bison, flex, clangStdenv, autoreconfHook,
@ -143,10 +143,12 @@ self: super:
outputs = [ "out" "dev" "devdoc" ]; 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: { 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" ]; configureFlags = [ "--disable-selective-werror" ];
buildInputs = attrs.buildInputs ++ [libiconv];
}); });
libICE = super.libICE.overrideAttrs (attrs: { libICE = super.libICE.overrideAttrs (attrs: {