Files
nixpkgs/pkgs/development/python-modules/openrazer/common.nix
T
2026-01-10 22:21:44 +01:00

20 lines
438 B
Nix

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