at v206 877 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "mtdev-1.1.5"; 5 6 src = fetchurl { 7 url = "http://bitmath.org/code/mtdev/${name}.tar.bz2"; 8 sha256 = "0zxs7shzgbalkvlaiibi25bd902rbmkv9n1lww6q8j3ri9qdaxv6"; 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 maintainers = with maintainers; [ wkennington ]; 24 }; 25}