summary refs log tree commit diff
path: root/pkgs/development/python-modules/openrazer/common.nix
blob: eac2751ce3e5a04f7d219a2b82ab22cd1501fad3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv
, fetchFromGitHub
}: rec {
  version = "2.6.0";
  src = fetchFromGitHub {
    owner = "openrazer";
    repo = "openrazer";
    rev = "v${version}";
    sha256 = "1s5irs3avrlp891mxan3z8p55ias9rq26rqp2qrlcc6i4vl29di0";
  };
  meta = with stdenv.lib; {
    homepage = https://openrazer.github.io/;
    license = licenses.gpl2;
    maintainers = with maintainers; [ roelvandijk ];
    platforms = platforms.linux;
  };
}