1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "mtdev-1.1.6";
5
6 src = fetchurl {
7 url = "http://bitmath.org/code/mtdev/${name}.tar.bz2";
8 sha256 = "1q700h9dqcm3zl6c3gj0qxxjcx6ibw2c51wjijydhwdcm26v5mqm";
9 };
10
11 meta = with stdenv.lib; {
12 homepage = "http://bitmath.org/code/mtdev/";
13 description = "Multitouch Protocol Translation Library";
14 longDescription = ''
15 The mtdev is a stand-alone library which transforms all variants of
16 kernel MT events to the slotted type B protocol. The events put into
17 mtdev may be from any MT device, specifically type A without contact
18 tracking, type A with contact tracking, or type B with contact tracking.
19 See the kernel documentation for further details.
20 '';
21 license = licenses.mit;
22 platforms = platforms.linux;
23 };
24}