mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
xvkbd: explicitly set LIBDIR and CONFDIR
In preparation to fix long-standing `imake` bug #135337 we need to set `LIBDIR` and `CONFDIR` away from incorrectly embedded `xorg-cf-files`. Before #135337 the package worked by chance. Issue: https://github.com/NixOS/nixpkgs/issues/135337
This commit is contained in:
parent
bace74bbf8
commit
79031203b8
@ -13,9 +13,11 @@ stdenv.mkDerivation {
|
||||
buildInputs = [ libXt libXaw libXtst xorgproto libXi Xaw3d libXpm ];
|
||||
installTargets = [ "install" "install.man" ];
|
||||
makeFlags = [
|
||||
"BINDIR=$(out)/bin"
|
||||
"XAPPLOADDIR=$(out)/etc/X11/app-defaults"
|
||||
"MANPATH=$(out)/man"
|
||||
"BINDIR=${placeholder "out"}/bin"
|
||||
"CONFDIR=${placeholder "out"}/etc/X11"
|
||||
"LIBDIR=${placeholder "out"}/lib/X11"
|
||||
"XAPPLOADDIR=${placeholder "out"}/etc/X11/app-defaults"
|
||||
"MANPATH=${placeholder "out"}/man"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user