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