Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation { 4 pname = "keyfuzz"; 5 version = "0.2"; 6 7 meta = with lib; { 8 description = "Manipulate the scancode/keycode translation tables of keyboard drivers"; 9 homepage = "http://0pointer.de/lennart/projects/keyfuzz/"; 10 license = licenses.gpl2Plus; 11 platforms = platforms.linux; 12 maintainers = with maintainers; [ mboes ]; 13 }; 14 15 src = fetchurl { 16 url = "http://0pointer.de/lennart/projects/keyfuzz/keyfuzz-0.2.tar.gz"; 17 sha256 = "0xv9ymivp8fnyc5xcyh1vamxnx90bzw66wlld813fvm6q2gsiknk"; 18 }; 19 20 configureFlags = [ "--without-initdir" "--disable-lynx" ]; 21}