Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 17 lines 428 B view raw
1{ lib 2, fetchFromGitHub 3}: rec { 4 version = "3.0.1"; 5 src = fetchFromGitHub { 6 owner = "openrazer"; 7 repo = "openrazer"; 8 rev = "v${version}"; 9 sha256 = "sha256-ptB0jP0kp1Liynkfz0B0OMw6xNQG1s8IvxhgNAdEytM="; 10 }; 11 meta = with lib; { 12 homepage = "https://openrazer.github.io/"; 13 license = licenses.gpl2Only; 14 maintainers = with maintainers; [ roelvandijk evanjs ]; 15 platforms = platforms.linux; 16 }; 17}