Files
nixpkgs/pkgs/development/python-modules/openrazer/common.nix
2025-06-04 01:30:18 -04:00

21 lines
475 B
Nix

{ lib, fetchFromGitHub }:
rec {
version = "3.10.3";
pyproject = true;
src = fetchFromGitHub {
owner = "openrazer";
repo = "openrazer";
tag = "v${version}";
hash = "sha256-M5g3Rn9WuyudhWQfDooopjexEgGVB0rzfJsPg+dqwn4=";
};
meta = {
homepage = "https://openrazer.github.io/";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ evanjs ];
teams = [ lib.teams.lumiguide ];
platforms = lib.platforms.linux;
};
}