nixpkgs/pkgs/tools/inputmethods/evsieve/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

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;
};
}