33 lines
773 B
Nix
33 lines
773 B
Nix
|
{ lib
|
||
|
, rustPlatform
|
||
|
, fetchFromGitHub
|
||
|
, pkg-config
|
||
|
, udev
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec{
|
||
|
pname = "makima";
|
||
|
version = "0.5.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "cyber-sushi";
|
||
|
repo = "makima";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-x8vjTXB6kFJ9o6EGCtlX6eT/VrzLF17fIA2gDLFumzY=";
|
||
|
};
|
||
|
|
||
|
cargoHash = "sha256-p4oMeDL7T/a9OCgMdriGtgHkZq8tZVzPspEsU4IPfAo=";
|
||
|
|
||
|
nativeBuildInputs = [ pkg-config ];
|
||
|
buildInputs = [ udev ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Linux daemon to remap and create macros for keyboards, mice and controllers";
|
||
|
homepage = "https://github.com/cyber-sushi/makima";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ ByteSudoer ];
|
||
|
platforms = platforms.linux;
|
||
|
mainProgram = "makima";
|
||
|
};
|
||
|
}
|