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

31 lines
734 B
Nix

{ lib
, fetchFromGitHub
, rustPlatform
, libevdev
}:
rustPlatform.buildRustPackage rec {
pname = "evsieve";
version = "1.4.0";
src = fetchFromGitHub {
owner = "KarsMulder";
repo = "evsieve";
rev = "v${version}";
hash = "sha256-UV5m8DmFtkCU/DoBJNBCdvhU/jYtU5+WnnhKwxZNl9g=";
};
cargoHash = "sha256-Bug25xK3YYQ3YjrUXlgWaVUPn87V3N/8XikqwYL/sUg=";
buildInputs = [ libevdev ];
doCheck = false; # unit tests create uinput devices
meta = with lib; {
description = "A utility for mapping events from Linux event devices";
homepage = "https://github.com/KarsMulder/evsieve";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ tsowell ];
platforms = platforms.linux;
};
}