forked from mirrors/nixpkgs
synergy: Add support for Xinput2.
This is needed in order to support devices such as gamepads or tablets. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
ea4afb73d8
commit
d9e0c355a0
|
@ -1,4 +1,5 @@
|
|||
{ stdenv, fetchurl, cmake, x11, libX11, libXi, libXtst, libXrandr, cryptopp }:
|
||||
{ stdenv, fetchurl, cmake, x11, libX11, libXi, libXtst, libXrandr, xinput
|
||||
, cryptopp }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "synergy-1.4.12";
|
||||
|
@ -15,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||
set(HAVE_X11_EXTENSIONS_XRANDR_H true)' CMakeLists.txt
|
||||
'';
|
||||
|
||||
buildInputs = [ cmake x11 libX11 libXi libXtst libXrandr cryptopp ];
|
||||
buildInputs = [ cmake x11 libX11 libXi libXtst libXrandr xinput cryptopp ];
|
||||
|
||||
# At this moment make install doesn't work for synergy
|
||||
# http://synergy-foss.org/spit/issues/details/3317/
|
||||
|
|
Loading…
Reference in a new issue