mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
commit
b122a98827
@ -215,6 +215,7 @@
|
||||
maurer = "Matthew Maurer <matthew.r.maurer+nix@gmail.com>";
|
||||
mbakke = "Marius Bakke <ymse@tuta.io>";
|
||||
mbe = "Brandon Edens <brandonedens@gmail.com>";
|
||||
mboes = "Mathieu Boespflug <mboes@tweag.net>";
|
||||
mcmtroffaes = "Matthias C. M. Troffaes <matthias.troffaes@gmail.com>";
|
||||
meditans = "Carlo Nucera <meditans@gmail.com>";
|
||||
meisternu = "Matt Miemiec <meister@krutt.org>";
|
||||
|
21
pkgs/tools/inputmethods/keyfuzz/default.nix
Normal file
21
pkgs/tools/inputmethods/keyfuzz/default.nix
Normal file
@ -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";
|
||||
}
|
@ -2152,6 +2152,8 @@ let
|
||||
|
||||
keychain = callPackage ../tools/misc/keychain { };
|
||||
|
||||
keyfuzz = callPackage ../tools/inputmethods/keyfuzz { };
|
||||
|
||||
kibana = callPackage ../development/tools/misc/kibana { };
|
||||
|
||||
kismet = callPackage ../applications/networking/sniffers/kismet { };
|
||||
|
Loading…
Reference in New Issue
Block a user