about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/inputmethods/keyfuzz/default.nix
blob: 8980abba2f6288af511c050aff8497e2a0876f74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation {
  pname = "keyfuzz";
  version = "0.2";

  meta = with lib; {
    description = "Manipulate the scancode/keycode translation tables of keyboard drivers";
    homepage    = "http://0pointer.de/lennart/projects/keyfuzz/";
    license     = licenses.gpl2Plus;
    platforms   = platforms.linux;
    maintainers = with maintainers; [ mboes ];
  };

  src = fetchurl {
    url = "http://0pointer.de/lennart/projects/keyfuzz/keyfuzz-0.2.tar.gz";
    sha256 = "0xv9ymivp8fnyc5xcyh1vamxnx90bzw66wlld813fvm6q2gsiknk";
  };

  configureFlags = [ "--without-initdir" "--disable-lynx" ];
}