summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/keyfuzz
diff options
context:
space:
mode:
authorMathieu Boespflug <m@tweag.io>2016-03-05 19:41:33 +0100
committerMathieu Boespflug <m@tweag.io>2016-03-05 19:41:33 +0100
commit73878e1c101871cf6dc216e5557dfeccd5344aae (patch)
tree46f202606fc5183ede3cac016876f81bfdf6abaa /pkgs/tools/inputmethods/keyfuzz
parent4e8853ca8d46988d283bc06a4c7cd6cf68a25576 (diff)
downloadnixpkgs-73878e1c101871cf6dc216e5557dfeccd5344aae.tar
nixpkgs-73878e1c101871cf6dc216e5557dfeccd5344aae.tar.gz
nixpkgs-73878e1c101871cf6dc216e5557dfeccd5344aae.tar.bz2
nixpkgs-73878e1c101871cf6dc216e5557dfeccd5344aae.tar.lz
nixpkgs-73878e1c101871cf6dc216e5557dfeccd5344aae.tar.xz
nixpkgs-73878e1c101871cf6dc216e5557dfeccd5344aae.tar.zst
nixpkgs-73878e1c101871cf6dc216e5557dfeccd5344aae.zip
keyfuzz: init at 0.2.
Diffstat (limited to 'pkgs/tools/inputmethods/keyfuzz')
-rw-r--r--pkgs/tools/inputmethods/keyfuzz/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/inputmethods/keyfuzz/default.nix b/pkgs/tools/inputmethods/keyfuzz/default.nix
new file mode 100644
index 00000000000..f04afd639b7
--- /dev/null
+++ b/pkgs/tools/inputmethods/keyfuzz/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "keyfuzz-${version}";
+  version = "0.2";
+
+  meta = with stdenv.lib; {
+    description = "Manipulate the scancode/keycode translation tables of keyboard drivers.";
+    homepace    = 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";
+}