2012-03-20 01:48:09 +00:00
|
|
|
{
|
|
|
|
stdenv
|
|
|
|
, fetchurl
|
|
|
|
, utilmacros
|
|
|
|
, pkgconfig
|
|
|
|
, mtdev
|
|
|
|
, xorgserver
|
2018-12-31 03:40:47 +00:00
|
|
|
, xorgproto
|
2012-07-14 21:32:20 +01:00
|
|
|
, pixman
|
2016-01-17 23:04:40 +00:00
|
|
|
, autoreconfHook
|
2012-03-20 01:48:09 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-07-14 21:32:20 +01:00
|
|
|
name = "xf86-input-mtrack-0.3.0";
|
2012-03-20 01:48:09 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
utilmacros
|
|
|
|
pkgconfig
|
|
|
|
mtdev
|
|
|
|
xorgserver
|
2018-12-31 03:40:47 +00:00
|
|
|
xorgproto
|
2012-07-14 21:32:20 +01:00
|
|
|
pixman
|
2016-01-17 23:04:40 +00:00
|
|
|
autoreconfHook
|
2012-03-20 01:48:09 +00:00
|
|
|
];
|
|
|
|
|
2012-07-14 21:32:20 +01:00
|
|
|
CFLAGS = "-I${pixman}/include/pixman-1";
|
|
|
|
|
2012-03-20 01:48:09 +00:00
|
|
|
src = fetchurl {
|
|
|
|
name = "xf86-input-mtrack.tar.gz";
|
2012-07-14 21:32:20 +01:00
|
|
|
url = "https://github.com/BlueDragonX/xf86-input-mtrack/tarball/v0.3.0";
|
|
|
|
sha256 = "174rdw7gv0wsnjgmwpx4pgjn1zfbylflda4k2dzff6phzxj9yl6v";
|
2012-03-20 01:48:09 +00:00
|
|
|
};
|
2012-03-20 01:51:03 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/BlueDragonX/xf86-input-mtrack;
|
|
|
|
|
|
|
|
description = "An Xorg driver for multitouch trackpads";
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-03-20 01:51:03 +00:00
|
|
|
};
|
2012-03-20 01:48:09 +00:00
|
|
|
}
|