nixpkgs/pkgs/development/python-modules/openrazer/common.nix
2023-08-12 17:03:19 -07:00

21 lines
468 B
Nix

{ lib
, fetchFromGitHub
}: rec {
version = "3.5.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "openrazer";
repo = "openrazer";
rev = "v${version}";
hash = "sha256-6YU2tl17LpDZe9pQ1a+B2SGIhqGdwME3Db6umVz7RLc=";
};
meta = with lib; {
homepage = "https://openrazer.github.io/";
license = licenses.gpl2Only;
maintainers = with maintainers; [ evanjs ] ++ teams.lumiguide.members;
platforms = platforms.linux;
};
}