mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
20 lines
462 B
Nix
20 lines
462 B
Nix
{ lib, fetchFromGitHub }:
|
|
rec {
|
|
version = "3.9.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openrazer";
|
|
repo = "openrazer";
|
|
rev = "v${version}";
|
|
hash = "sha256-MLwhqLPWdjg1ZUZP5Sig37RgZEeHlU+DyELpyMif6iY=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://openrazer.github.io/";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ evanjs ] ++ teams.lumiguide.members;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|