* Build GTK+ with Xinput support, necessary for tablet support in Gimp
and Inkscape (suggested by Cillian de Róiste). svn path=/nixpkgs/branches/x-updates/; revision=25919
This commit is contained in:
parent
57eed75265
commit
4b45a4c4cb
|
@ -15,12 +15,16 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "cbed1a7b8cd1e471388a00f22557dd061334698a0c1aece11b7ed6541d115606";
|
sha256 = "cbed1a7b8cd1e471388a00f22557dd061334698a0c1aece11b7ed6541d115606";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
configureFlags = "--with-xinput=yes";
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
buildNativeInputs = [ perl ];
|
buildNativeInputs = [ perl ];
|
||||||
buildInputs = [ pkgconfig jasper ];
|
buildInputs = [ pkgconfig jasper ];
|
||||||
|
|
||||||
propagatedBuildInputs =
|
propagatedBuildInputs =
|
||||||
[ xlibs.xlibs glib atk pango gdk_pixbuf /* libtiff libjpeg libpng */ cairo
|
[ xlibs.xlibs glib atk pango gdk_pixbuf /* libtiff libjpeg libpng */ cairo
|
||||||
xlibs.libXrandr xlibs.libXrender xlibs.libXcomposite
|
xlibs.libXrandr xlibs.libXrender xlibs.libXcomposite xlibs.libXi
|
||||||
]
|
]
|
||||||
++ stdenv.lib.optional xineramaSupport xlibs.libXinerama
|
++ stdenv.lib.optional xineramaSupport xlibs.libXinerama
|
||||||
++ stdenv.lib.optionals cupsSupport [ cups ];
|
++ stdenv.lib.optionals cupsSupport [ cups ];
|
||||||
|
|
Loading…
Reference in New Issue