Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, fetchFromGitHub 3}: rec { 4 version = "3.5.1"; 5 6 src = fetchFromGitHub { 7 owner = "openrazer"; 8 repo = "openrazer"; 9 rev = "v${version}"; 10 hash = "sha256-6YU2tl17LpDZe9pQ1a+B2SGIhqGdwME3Db6umVz7RLc="; 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}