depot/third_party/nixpkgs/pkgs/tools/inputmethods/evsieve/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

32 lines
761 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 = "Utility for mapping events from Linux event devices";
mainProgram = "evsieve";
homepage = "https://github.com/KarsMulder/evsieve";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ tsowell ];
platforms = platforms.linux;
};
}