mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
xcruiser: 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
1333bd9ac0
commit
bace74bbf8
|
@ -12,8 +12,10 @@ stdenv.mkDerivation {
|
|||
buildInputs = [ libXt libXaw libXpm libXext ];
|
||||
|
||||
makeFlags = [
|
||||
"BINDIR=$(out)/bin"
|
||||
"XAPPLOADDIR=$(out)/etc/X11/app-defaults"
|
||||
"BINDIR=${placeholder "out"}/bin"
|
||||
"CONFDIR=${placeholder "out"}/etc/X11"
|
||||
"LIBDIR=${placeholder "out"}/lib/X11"
|
||||
"XAPPLOADDIR=${placeholder "out"}/etc/X11/app-defaults"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue