23ec7571e7
Diff: https://github.com/KarsMulder/evsieve/compare/v1.3.1...v1.4.0 Changelog: https://github.com/KarsMulder/evsieve/releases/tag/v1.4.0
31 lines
734 B
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;
|
|
};
|
|
}
|