2021-01-25 00:26:54 -08:00
|
|
|
{ lib
|
2019-08-28 18:06:30 -07:00
|
|
|
, fetchFromGitHub
|
|
|
|
}: rec {
|
2021-05-08 22:42:12 -07:00
|
|
|
version = "3.0.1";
|
2019-08-28 18:06:30 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "openrazer";
|
|
|
|
repo = "openrazer";
|
|
|
|
rev = "v${version}";
|
2021-05-08 22:42:12 -07:00
|
|
|
sha256 = "sha256-ptB0jP0kp1Liynkfz0B0OMw6xNQG1s8IvxhgNAdEytM=";
|
2019-08-28 18:06:30 -07:00
|
|
|
};
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://openrazer.github.io/";
|
2021-05-08 22:42:12 -07:00
|
|
|
license = licenses.gpl2Only;
|
2020-01-29 22:32:30 -08:00
|
|
|
maintainers = with maintainers; [ roelvandijk evanjs ];
|
2019-08-28 18:06:30 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|