pythonPackages.openrazer: init at 2.6.0

This commit is contained in:
Evan Stoll
2019-08-28 21:06:30 -04:00
parent d9f95c1b1e
commit 50eba5b688
3 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,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;
};
}