Files
nixpkgs/pkgs/development/python-modules/openrazer/common.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
475 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{ 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;
};
}