tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
setroot: fix darwin build
Matthew Bauer
9 years ago
62ca3dd4
0528b8c9
+1
-1
1 changed file
expand all
collapse all
unified
split
pkgs
tools
X11
setroot
default.nix
+1
-1
pkgs/tools/X11/setroot/default.nix
···
18
18
buildInputs = [ libX11 imlib2 ]
19
19
++ stdenv.lib.optional enableXinerama libXinerama;
20
20
21
21
-
buildFlags = if enableXinerama then "xinerama=1" else "xinerama=0";
21
21
+
buildFlags = "CC=cc " + (if enableXinerama then "xinerama=1" else "xinerama=0");
22
22
23
23
installFlags = "DESTDIR=$(out) PREFIX=";
24
24