nix-packages/plover/plover-rkb1-hid.nix

34 lines
858 B
Nix
Raw Normal View History

2022-09-30 14:24:31 +00:00
{
callPackage,
2022-10-04 16:47:26 +00:00
buildPythonPackage,
2022-10-04 16:48:44 +00:00
fetchFromGitea,
2022-10-04 16:47:26 +00:00
lib,
pythonOlder,
hid,
bitstring,
2022-09-30 14:24:31 +00:00
}: let
2022-10-04 16:47:26 +00:00
plover = callPackage ./plover {};
2022-09-30 14:24:31 +00:00
source = builtins.fromJSON (builtins.readFile ./plover-rkb1-hid.json);
2022-09-30 13:36:15 +00:00
in
2022-10-04 16:47:26 +00:00
buildPythonPackage rec {
pname = "plover_machine_hid";
2022-09-30 14:24:31 +00:00
version = source.date;
src = fetchFromGitea {
domain = "git.chir.rs";
owner = "darkkirb";
repo = "plover-machine-hid";
inherit (source) rev sha256;
};
2022-10-06 19:40:53 +00:00
2022-10-04 16:47:26 +00:00
doCheck = false;
disabled = pythonOlder "3.6";
propagatedBuildInputs = [plover hid bitstring];
meta = with lib; {
description = "POC Plover plugin and firmware for the Plover HID protocol";
license = licenses.mit;
};
2022-09-30 14:24:31 +00:00
passthru.updateScript = [../scripts/update-git.sh "https://git.chir.rs/darkkirb/plover-machine-hid" "plover/plover-rkb1-hid.json"];
2022-10-04 16:47:26 +00:00
}