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