nixpkgs/pkgs/tools/inputmethods/keyfuzz/default.nix

22 lines
629 B
Nix
Raw Normal View History

2016-03-05 18:41:33 +00:00
{ stdenv, fetchurl }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "keyfuzz";
2016-03-05 18:41:33 +00:00
version = "0.2";
meta = with stdenv.lib; {
description = "Manipulate the scancode/keycode translation tables of keyboard drivers.";
homepage = http://0pointer.de/lennart/projects/keyfuzz/;
2016-03-05 18:41:33 +00:00
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";
};
2018-07-25 21:44:21 +00:00
configureFlags = [ "--without-initdir" "--disable-lynx" ];
2016-03-05 18:41:33 +00:00
}