mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
evsieve: init at 1.3.1
This commit is contained in:
parent
8e25133afe
commit
f0fcea2d55
31
pkgs/tools/inputmethods/evsieve/default.nix
Normal file
31
pkgs/tools/inputmethods/evsieve/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, libevdev
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "evsieve";
|
||||
version = "1.3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "KarsMulder";
|
||||
repo = "evsieve";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-R/y3iyKGE4dzAyNnDwrMCr8JFshYJwNcgHQ8UbtuRj8=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-jkm+mAHejCBZFalUbJNaIxtIl2kwnlPR2wsaYlcfSz8=";
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -6924,6 +6924,8 @@ with pkgs;
|
||||
|
||||
evdevremapkeys = callPackage ../tools/inputmethods/evdevremapkeys { };
|
||||
|
||||
evsieve = callPackage ../tools/inputmethods/evsieve { };
|
||||
|
||||
eyedropper = callPackage ../applications/graphics/eyedropper { };
|
||||
|
||||
persistent-evdev = python3Packages.callPackage ../servers/persistent-evdev { };
|
||||
|
Loading…
Reference in New Issue
Block a user