Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchFromGitHub }: 2rec { 3 version = "3.8.0"; 4 pyproject = true; 5 6 src = fetchFromGitHub { 7 owner = "openrazer"; 8 repo = "openrazer"; 9 rev = "v${version}"; 10 hash = "sha256-eV5xDFRQi0m95pL6e2phvblUbh5GEJ1ru1a62TnbGNk="; 11 }; 12 13 meta = with lib; { 14 homepage = "https://openrazer.github.io/"; 15 license = licenses.gpl2Only; 16 maintainers = with maintainers; [ evanjs ] ++ teams.lumiguide.members; 17 platforms = platforms.linux; 18 }; 19}