1{ lib, fetchFromGitHub }:
2rec {
3 version = "3.10.3";
4 pyproject = true;
5
6 src = fetchFromGitHub {
7 owner = "openrazer";
8 repo = "openrazer";
9 tag = "v${version}";
10 hash = "sha256-M5g3Rn9WuyudhWQfDooopjexEgGVB0rzfJsPg+dqwn4=";
11 };
12
13 meta = {
14 homepage = "https://openrazer.github.io/";
15 license = lib.licenses.gpl2Only;
16 maintainers = with lib.maintainers; [ evanjs ];
17 teams = [ lib.teams.lumiguide ];
18 platforms = lib.platforms.linux;
19 };
20}