mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
xorg.xinit: fix on Linux after #6160
This commit is contained in:
parent
18380d2790
commit
1982ac0b65
|
@ -378,7 +378,7 @@ in
|
|||
|
||||
xinit = attrs: attrs // {
|
||||
stdenv = if isDarwin then args.clangStdenv else stdenv;
|
||||
buildInputs = if isDarwin then [ args.bootstrap_cmds args.pkgconfig ] else null;
|
||||
buildInputs = attrs.buildInputs ++ lib.optional isDarwin args.bootstrap_cmds;
|
||||
configureFlags = [
|
||||
"--with-xserver=${xorg.xorgserver}/bin/X"
|
||||
] ++ lib.optionals isDarwin [
|
||||
|
|
Loading…
Reference in a new issue