Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
30 lines
665 B
Nix
30 lines
665 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "keyfuzz";
|
|
version = "0.2";
|
|
|
|
meta = with lib; {
|
|
description = "Manipulate the scancode/keycode translation tables of keyboard drivers";
|
|
mainProgram = "keyfuzz";
|
|
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"
|
|
];
|
|
}
|