depot/third_party/nixpkgs/pkgs/development/python-modules/openrazer/common.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

20 lines
468 B
Nix

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