mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
setroot: fix darwin build
This commit is contained in:
parent
0528b8c94e
commit
62ca3dd4b6
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [ libX11 imlib2 ]
|
||||
++ stdenv.lib.optional enableXinerama libXinerama;
|
||||
|
||||
buildFlags = if enableXinerama then "xinerama=1" else "xinerama=0";
|
||||
buildFlags = "CC=cc " + (if enableXinerama then "xinerama=1" else "xinerama=0");
|
||||
|
||||
installFlags = "DESTDIR=$(out) PREFIX=";
|
||||
|
||||
|
|
Loading…
Reference in a new issue