1{ stdenv
2, fetchFromGitHub
3}: rec {
4 version = "2.8.0";
5 src = fetchFromGitHub {
6 owner = "openrazer";
7 repo = "openrazer";
8 rev = "v${version}";
9 sha256 = "0mwg6b2y3wfpvgxb9lznwblb3bnrayn858nc4fbbg76zdp5bk5ky";
10 };
11 meta = with stdenv.lib; {
12 homepage = "https://openrazer.github.io/";
13 license = licenses.gpl2;
14 maintainers = with maintainers; [ roelvandijk evanjs ];
15 platforms = platforms.linux;
16 };
17}