1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "keyfuzz-${version}";
5 version = "0.2";
6
7 meta = with stdenv.lib; {
8 description = "Manipulate the scancode/keycode translation tables of keyboard drivers.";
9 homepace = http://0pointer.de/lennart/projects/keyfuzz/;
10 license = licenses.gpl2Plus;
11 platforms = platforms.linux;
12 maintainers = with maintainers; [ mboes ];
13 };
14
15 src = fetchurl {
16 url = "http://0pointer.de/lennart/projects/keyfuzz/keyfuzz-0.2.tar.gz";
17 sha256 = "0xv9ymivp8fnyc5xcyh1vamxnx90bzw66wlld813fvm6q2gsiknk";
18 };
19
20 configureFlags = "--without-initdir --disable-lynx";
21}