2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2019-08-29 01:06:30 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}: rec {
|
2022-12-06 01:13:03 +00:00
|
|
|
version = "3.5.1";
|
2023-08-13 00:03:19 +00:00
|
|
|
format = "setuptools";
|
2022-12-06 01:13:03 +00:00
|
|
|
|
2019-08-29 01:06:30 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "openrazer";
|
|
|
|
repo = "openrazer";
|
|
|
|
rev = "v${version}";
|
2023-03-03 00:48:06 +00:00
|
|
|
hash = "sha256-6YU2tl17LpDZe9pQ1a+B2SGIhqGdwME3Db6umVz7RLc=";
|
2019-08-29 01:06:30 +00:00
|
|
|
};
|
2022-12-06 01:13:03 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://openrazer.github.io/";
|
2021-05-09 05:42:12 +00:00
|
|
|
license = licenses.gpl2Only;
|
2022-05-24 10:16:25 +00:00
|
|
|
maintainers = with maintainers; [ evanjs ] ++ teams.lumiguide.members;
|
2019-08-29 01:06:30 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|