xorg.xload: fix build (#57665)

add missing dependency gettext
This commit is contained in:
xeji 2019-03-15 16:45:10 +01:00 committed by GitHub
parent 36d6bbaa70
commit e3357a1b5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,7 +1,6 @@
{ abiCompat ? null,
stdenv, makeWrapper, lib, fetchurl, fetchpatch, buildPackages,
automake, autoconf, libiconv, libtool, intltool, mtdev, libevdev, libinput,
automake, autoconf, gettext, 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,
@ -442,6 +441,10 @@ self: super:
'';
});
xload = super.xload.overrideAttrs (attrs: {
nativeBuildInputs = attrs.nativeBuildInputs ++ [ gettext ];
});
xlsfonts = super.xlsfonts.overrideAttrs (attrs: {
meta = attrs.meta // { license = lib.licenses.mit; };
});