18 lines
435 B
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
}: rec {
2020-07-16 10:53:00 -04:00
version = "2.8.0";
src = fetchFromGitHub {
owner = "openrazer";
repo = "openrazer";
rev = "v${version}";
2020-07-16 10:53:00 -04:00
sha256 = "0mwg6b2y3wfpvgxb9lznwblb3bnrayn858nc4fbbg76zdp5bk5ky";
};
meta = with stdenv.lib; {
homepage = "https://openrazer.github.io/";
license = licenses.gpl2;
2020-01-30 01:32:30 -05:00
maintainers = with maintainers; [ roelvandijk evanjs ];
platforms = platforms.linux;
};
}