3
0
Fork 0
forked from mirrors/nixpkgs

gtk2: Enable xinput for Darwin

This commit is contained in:
Johannes Bornhold 2016-12-27 08:45:37 +01:00
parent 346c1db2ac
commit febab15b01

View file

@ -38,9 +38,13 @@ stdenv.mkDerivation rec {
++ optional xineramaSupport libXinerama
++ optionals cupsSupport [ cups ];
configureFlags = if stdenv.isDarwin
then "--disable-glibtest --disable-introspection --disable-visibility"
else "--with-xinput=yes";
configureFlags = [
"--with-xinput=yes"
] ++ stdenv.lib.optionals stdenv.isDarwin [
"--disable-glibtest"
"--disable-introspection"
"--disable-visibility"
];
postInstall = ''
moveToOutput share/gtk-2.0/demo "$devdoc"